|
0
|
1 |
{% extends "admin/base_site.html" %} |
|
|
2 |
{% load i18n %} |
|
|
3 |
{% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}{% trans 'Change password' %} / <a href="../../logout/">{% trans 'Log out' %}</a>{% endblock %} |
|
|
4 |
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password change' %}</div>{% endblock %} |
|
|
5 |
|
|
|
6 |
{% block title %}{% trans 'Password change successful' %}{% endblock %} |
|
|
7 |
|
|
|
8 |
{% block content %} |
|
|
9 |
|
|
|
10 |
<h1>{% trans 'Password change successful' %}</h1> |
|
|
11 |
|
|
|
12 |
<p>{% trans 'Your password was changed.' %}</p> |
|
|
13 |
|
|
|
14 |
{% endblock %} |