equal
deleted
inserted
replaced
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 %} |
|