Fixed #18270 -- Corrected variable name in password reset example.

Thanks schnippi for the report.
Backport of ec5423df05dedeee6651c36dd4d90fec0d8cca7c from master.
This commit is contained in:
Claude Paroz 2012-05-04 08:20:50 +02:00
parent a3c8201b77
commit ffe620f203

View File

@ -1244,7 +1244,7 @@ includes a few other useful built-in views located in
{% load url from future %} {% load url from future %}
Someone asked for password reset for email {{ email }}. Follow the link below: Someone asked for password reset for email {{ email }}. Follow the link below:
{{ protocol}}://{{ site_name }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %} {{ protocol}}://{{ domain }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}
The same template context is used for subject template. Subject must be The same template context is used for subject template. Subject must be
single line plain text string. single line plain text string.