summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTanmay Vijay <tanvijay27994@gmail.com>2020-04-23 18:38:00 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-24 08:39:56 +0200
commitcb10c33e2760b4e4da29cefa93028b648bbb7e09 (patch)
treee9280d23a7eb71276341838131227c0ff56e25aa /docs
parent2673738aac4a355950d698c58fa0b7e1e37cecb9 (diff)
[3.0.x] Doc'd PasswordChangeView/PasswordResetView.success_url defaults.
Backport of e43abbbd70a78d4c0023667589c4e143ed78807e from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/default.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index e593f37e49..e89380aac4 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -1204,7 +1204,7 @@ implementation details see :ref:`using-the-views`.
:file:`registration/password_change_form.html` if not supplied.
* ``success_url``: The URL to redirect to after a successful password
- change.
+ change. Defaults to ``'password_change_done'``.
* ``form_class``: A custom "change password" form which must accept a
``user`` keyword argument. The form is responsible for actually changing
@@ -1278,7 +1278,7 @@ implementation details see :ref:`using-the-views`.
``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
* ``success_url``: The URL to redirect to after a successful password reset
- request.
+ request. Defaults to ``'password_reset_done'``.
* ``from_email``: A valid email address. By default Django uses
the :setting:`DEFAULT_FROM_EMAIL`.