Opened 15 years ago

Closed 15 years ago

#12442 closed (wontfix)

PasswordResetForm ignores TEMPLATE_CONTEXT_PROCESSORS

Reported by: Art Owned by: nobody
Component: Contrib apps Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When rendering template, PasswordResetForm supplies only local context, ignoring whatever is in TEMPLATE_CONTEXT_PROCESSORS

Change History (1)

comment:1 by Luke Plant, 15 years ago

Resolution: wontfix
Status: newclosed

I presume you are talking about the e-mail template, in which case yes, this is true, because PasswordResetForm uses Context and not RequestContext. It cannot use the latter because it does not have access to the request object. (For a request to change that, see #12372)

Closing WONTFIX because this is intended behaviour.

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