Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#2186 closed defect (fixed)

[patch] password reset mail has broken variable substitution

Reported by: md@… Owned by: Adrian Holovaty
Component: Contrib apps Version: dev
Severity: minor Keywords:
Cc: md@… Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The variable Substitution in password_reset_email.html does not work as expected. This patch fixes that:

--- django/contrib/admin/templates/registration/password_reset_email.html       (revision 3138)
  -{% trans "for your user account at %(site_name)s" %}.
  +{% blocktrans %}for your user account at {{ site_name}}{% endblocktrans %}.

See http://blogs.23.nu/c0re/stories/12199/ for some further explanation

Attachments (1)

django-20060618-passwordmail.diff (849 bytes ) - added by md@… 18 years ago.

Download all attachments as: .zip

Change History (2)

by md@…, 18 years ago

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3140]) Fixed #2186 -- Fixed i18n variable substitution in admin/templates/registration/password_reset_email.html. Thanks, md@…

Note: See TracTickets for help on using tickets.
Back to Top