diff -r 58bc48201d0e -r 83adb3fd0efd src/hdalab/templates/registration/password_change_form.html --- a/src/hdalab/templates/registration/password_change_form.html Mon Dec 01 10:34:53 2014 +0100 +++ b/src/hdalab/templates/registration/password_change_form.html Wed Dec 10 11:34:54 2014 +0100 @@ -1,12 +1,30 @@ {% extends "base.html" %} +{% load static %} {% load i18n %} +{% block title %}{% trans "Password change" %}{% endblock %} + +{% block css_import %} +{{block.super}} + +{% endblock %} + {% block main_content %}
+

{% trans "Changer le mot de passe" %}

- {% csrf_token %} - {{ form.as_p }} - + {% csrf_token %} +

+ + {{form.password1}} +

+

+ + {{form.password2}} +

+
{% endblock %}