Commit 0611e1fe authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #18301 -- Fixed url name in password reset example.

Thanks nicknnn for the report.
parent 36737958
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.