2006-05-02 09:31:56 +08:00
|
|
|
{% extends "admin/base_site.html" %}
|
2005-11-04 12:59:46 +08:00
|
|
|
{% load i18n %}
|
2006-05-05 11:02:11 +08:00
|
|
|
{% block userlinks %}<a href="../../doc/">{% trans 'Documentation' %}</a> / {% trans 'Change password' %} / <a href="../../logout/">{% trans 'Log out' %}</a>{% endblock %}
|
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password change' %}</div>{% endblock %}
|
2005-07-27 06:54:59 +08:00
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
{% block title %}{% trans 'Password change successful' %}{% endblock %}
|
2005-07-22 23:02:40 +08:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
<h1>{% trans 'Password change successful' %}</h1>
|
2005-07-22 23:02:40 +08:00
|
|
|
|
2005-11-04 12:59:46 +08:00
|
|
|
<p>{% trans 'Your password was changed.' %}</p>
|
2005-07-22 23:02:40 +08:00
|
|
|
|
|
|
|
{% endblock %}
|