{% extends "base.html" %} {% load i18n %} {% load bootstrap3 %} {% load dv_filters %} {% block head_title %}{% blocktrans with name=userprofile.get_full_name %}Envoyer les données de connexion à {{name}} ?{% endblocktrans %}{% endblock %} {% block content %}

{% if initial_send %} {% blocktrans with name=userprofile.get_full_name %}Envoyer les données de connexion à {{name}} ?{% endblocktrans %} {% else %} {% blocktrans with name=userprofile.get_full_name %}Réinitialiser les données de connexion pour {{name}} ?{% endblocktrans %} {% endif %}

{% if not initial_send %}
{% blocktrans with name=userprofile.get_full_name %}Cette action va réinitialiser le mot de passe de {{name}} !{% endblocktrans %}
{% endif %}
{% include "auth/email_user_send_credentials.txt" with userprofile=userprofile fromuser=request.user current_site=current_site login_uri=login_uri password='******' %}
{% csrf_token %} {% bootstrap_form form layout='horizontal' size='small' %} {% buttons %} {% trans "Annuler" %} {% endbuttons %}
{% endblock %}