From 0611e1fed2308ad5613cffd3629dfa5a97248dff Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 11 May 2012 20:15:30 +0200 Subject: [PATCH] Fixed #18301 -- Fixed url name in password reset example. Thanks nicknnn for the report. --- docs/topics/auth.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt index 3ed9347f22..c3a2636aaf 100644 --- a/docs/topics/auth.txt +++ b/docs/topics/auth.txt @@ -1242,7 +1242,7 @@ includes a few other useful built-in views located in .. code-block:: html+django Someone asked for password reset for email {{ email }}. Follow the link below: - {{ protocol}}://{{ domain }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %} + {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb36=uid token=token %} The same template context is used for subject template. Subject must be single line plain text string.