diff options
| author | Hugo Osvaldo Barrera <hugo@barrera.io> | 2015-08-26 03:07:06 -0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-04 10:35:37 -0500 |
| commit | dcee1dfc798bbf4602a35fb73f6acade9f5fd630 (patch) | |
| tree | 3136c20778dc4a06f399bc8af6097f3639510c83 /docs/topics | |
| parent | ad216381fcd7d3d62f1639f9998f5a965d8eaedb (diff) | |
Fixed #12405 -- Added LOGOUT_REDIRECT_URL setting.
After a user logs out via auth.views.logout(), they're redirected
to LOGOUT_REDIRECT_URL if no `next_page` argument is provided.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/auth/default.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index 5b6472f7a3..690d11e3b8 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -1105,7 +1105,9 @@ implementation details see :ref:`using-the-views`. **Optional arguments:** - * ``next_page``: The URL to redirect to after logout. + * ``next_page``: The URL to redirect to after logout. Defaults to + :setting:`settings.LOGOUT_REDIRECT_URL <LOGOUT_REDIRECT_URL>` if not + supplied. * ``template_name``: The full name of a template to display after logging the user out. Defaults to |
