Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#2375 closed enhancement (fixed)

[patch] Let email template be variable for password reset

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

Description

Similar to the other fairly recent changes where you can pass in a different template name for login, logout, password_change[_done], password_reset[_done] in urls.py, the email template should also have the ability to be overridden. For example, in my case, I'm putting all login related stuff in the accounts template directory. Without this functionality you always need a registration template directory.

I've got a proposed diff that is tested and is working on a site I'm developing. I'll submit it after posting this. I'm not sure of the correct way to submit a patch so I'm using "svn diff > email_template.patch".

What this will do is allow one to override the email template you set it in your urls.py like so:

(r'accounts/password_reset/$', 'django.contrib.auth.views.password_reset', {'template_name': 'accounts/pwreset.html', 'email_template_name': 'accounts/pwreset_email.txt'}),

Note the new key "email_template_name" is new.

Attachments (2)

email_template.patch (2.2 KB ) - added by treborhudson@… 18 years ago.
email_template.2.patch (2.3 KB ) - added by treborhudson@… 18 years ago.
The first patch forgot the default email template in save() function

Download all attachments as: .zip

Change History (4)

by treborhudson@…, 18 years ago

Attachment: email_template.patch added

by treborhudson@…, 18 years ago

Attachment: email_template.2.patch added

The first patch forgot the default email template in save() function

comment:1 by anonymous, 18 years ago

Summary: Let email template be variable for password reset[patch] Let email template be variable for password reset

comment:2 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3462]) Fixed #2375 -- Changed password_reset auth view to make e-mail template name variable. Thanks, treborhudson@…

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