summaryrefslogtreecommitdiff
path: root/tbc/static/admin/templates/registration/password_change_done.html
diff options
context:
space:
mode:
Diffstat (limited to 'tbc/static/admin/templates/registration/password_change_done.html')
-rw-r--r--tbc/static/admin/templates/registration/password_change_done.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/tbc/static/admin/templates/registration/password_change_done.html b/tbc/static/admin/templates/registration/password_change_done.html
new file mode 100644
index 0000000..3e557eb
--- /dev/null
+++ b/tbc/static/admin/templates/registration/password_change_done.html
@@ -0,0 +1,15 @@
+{% extends "admin/base_site.html" %}
+{% load i18n %}
+{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}{% trans 'Change password' %} / <a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a>{% endblock %}
+{% block breadcrumbs %}
+<div class="breadcrumbs">
+<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
+&rsaquo; {% trans 'Password change' %}
+</div>
+{% endblock %}
+
+{% block title %}{{ title }}{% endblock %}
+{% block content_title %}<h1>{{ title }}</h1>{% endblock %}
+{% block content %}
+<p>{% trans 'Your password was changed.' %}</p>
+{% endblock %}