summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-06 22:30:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-06 22:30:01 +0000
commit6d1b5b3b1a7111dcd975dc0cb925fbb499e9292a (patch)
treebc3eb590076650fd9b2a2757608780a83077238c
parent557aa1572ce6b6e5428021c937fdef298dea700e (diff)
Fixed #727 -- Fixed leftover %() syntax in password_reset_email template. Thanks, Hugo
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1100 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/admin/templates/registration/password_reset_email.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_email.html b/django/contrib/admin/templates/registration/password_reset_email.html
index b9a0257392..b7f31e484c 100644
--- a/django/contrib/admin/templates/registration/password_reset_email.html
+++ b/django/contrib/admin/templates/registration/password_reset_email.html
@@ -2,7 +2,7 @@
{% trans "You're receiving this e-mail because you requested a password reset" %}
{% trans "for your user account at %(site_name)s" %}.
-{% trans "Your new password is: %(new_password)s" %}
+{% blocktrans %}Your new password is: {{ new_password }}{% endblocktrans %}
{% trans "Feel free to change this password by going to this page:" %}
@@ -12,4 +12,4 @@ http://{{ domain }}/password_change/
{% trans "Thanks for using our site!" %}
-{% trans "The %(site_name)s team" %}
+{% blocktrans %}The {{ site_name }} team{% endblocktrans %}