web/ldt/user/templates/registration/password_change_done.html
changeset 4 7c994c98d1df
parent 3 651f67b66c51
child 5 ae8593287883
equal deleted inserted replaced
3:651f67b66c51 4:7c994c98d1df
     1 {% extends "registration/base.html" %}
       
     2 {% load i18n %}
       
     3 {% block title %}{% trans 'password change successful' %}{% endblock %}
       
     4 
       
     5 {% block breadcrumb %}
       
     6     <li></li>
       
     7     <li><a href="{% url ldt.user.views.profile %}">{% trans "Profiles" %}</a></li>
       
     8     <li>{% trans "password change" %}</li>
       
     9 {% endblock %}
       
    10 
       
    11 {% block content_title %}{% trans "password change successful" %}{% endblock %}
       
    12 {% block iricontent %}
       
    13 
       
    14 <p>{% trans 'Your password has been changed.' %}</p>
       
    15 <a href="{% url ldt.user.views.profile %}">{% trans 'Go back to profiles' %}</a>
       
    16 
       
    17 {% endblock %}