Just wondering where I can set the url to redirect to after logout. I know you can set the login url. I want to redirect to my home page.
If you want to set the redirection URL on client level, you can do it in the urls.py:
urls.py
(r'^management/logout/$', 'django.contrib.auth.views.logout'),
And then in the template:
Log out
Where the next, you point to the right URL.
next