{% extends "teleforma/base.html" %}
-{% load i18n adminmedia %}
-{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/forms.css" />{% endblock %}
-{% 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 %}
-
+{% load i18n %}
{% block title %}<br />{% trans 'Password change' %}{% endblock %}
{% block content %}<div id="content-main">
url(r'^accounts/password_change/$', PasswordChangeView.as_view(template_name='registration/password_change_form.html'),
name="teleforma-password-change"),
url(r'^accounts/password_change_done/$', PasswordChangeDoneView.as_view(
- template_name='registration/password_change_done.html'), name="teleforma-password-change-done"),
+ template_name='registration/password_change_done.html'), name="password_change_done"),
url(r'^accounts/password_reset/$', PasswordResetView.as_view(template_name='registration/password_reset_form.html',
email_template_name='registration/password_reset_email.html'), name="teleforma-password-reset"),