summaryrefslogtreecommitdiff
path: root/django/contrib/admin/templates
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2008-06-24 17:29:17 +0000
committerLuke Plant <L.Plant.98@cantab.net>2008-06-24 17:29:17 +0000
commit48c706a43a12d4e03fb62fdc6e938b1b0cf0bb33 (patch)
treef4c089cad02f2c1e80425686081ce61f786f362f /django/contrib/admin/templates
parent0ad37188cf999ff0db1b0b09a82eaf86e7e30c9b (diff)
newforms-admin: Updated password reset form for newforms syntax (missed in [7191])
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7734 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/admin/templates')
-rw-r--r--django/contrib/admin/templates/registration/password_reset_form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_form.html b/django/contrib/admin/templates/registration/password_reset_form.html
index 423821ba60..d8c7d03f93 100644
--- a/django/contrib/admin/templates/registration/password_reset_form.html
+++ b/django/contrib/admin/templates/registration/password_reset_form.html
@@ -12,7 +12,7 @@
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you." %}</p>
<form action="" method="post">
-{% if form.email.errors %}{{ form.email.html_error_list }}{% endif %}
+{% if form.email.errors %}{{ form.email.errors }}{% endif %}
<p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
</form>