summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-30 09:25:21 -0400
committerTim Graham <timograham@gmail.com>2013-10-30 09:26:39 -0400
commit3ec994de2af20def51da54a510cb264d744ea48b (patch)
tree65398080259095844bf238b6456159d89a55a8f2 /docs
parente21d935f52980aefc972e11c9bd551dd75b1a659 (diff)
[1.5.x] Fixed #21294 -- Clarified the logout next_page argument.
Thanks wim at go2people.nl for the report. Backport of 51e6575472 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/default.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 6914f9e6a1..3e10b737e7 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -578,8 +578,7 @@ patterns.
log the user in. Defaults to :file:`registration/login.html`.
* ``redirect_field_name``: The name of a ``GET`` field containing the
- URL to redirect to after login. Overrides ``next`` if the given
- ``GET`` parameter is passed.
+ URL to redirect to after login. Defaults to ``next``.
* ``authentication_form``: A callable (typically just a form class) to
use for authentication. Defaults to
@@ -696,8 +695,8 @@ patterns.
:file:`registration/logged_out.html` if no argument is supplied.
* ``redirect_field_name``: The name of a ``GET`` field containing the
- URL to redirect to after log out. Overrides ``next_page`` if the given
- ``GET`` parameter is passed.
+ URL to redirect to after log out. Defaults to ``next``. Overrides the
+ ``next_page`` URL if the given ``GET`` parameter is passed.
* ``current_app``: A hint indicating which application contains the current
view. See the :ref:`namespaced URL resolution strategy