﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
24944	Have password_reset pass extra_context to the email template rendering as well	twelveeighty	Sujay S Kumar	"The password_reset function in auth.views currently allows for extra context parameters to be passed to the rendered reset password form, but it does not pass through those extra context parameters to the 'opt' dictionary used for the email template. This should be an easy feature to add: just before the form.save(), add the extra_context to the opts dictionary:

{{{
# inside the request.method == 'POST' and form.isValid() block:
opts = {  ...  }
if extra_context is not None:
   opts.update(extra_context)
form.save(**opts)
}}}
"	New feature	closed	contrib.auth	1.8	Normal	fixed		sujay.skumar141295@…	Accepted	1	0	0	0	1	0
