30👍
✅
Change:
LOGIN_REDIRECT_URL = 'auth/logged_in'
to:
LOGIN_REDIRECT_URL = '/auth/logged_in'
You’re redirecting to a path that is appended to the current url. You need to use a leading slash to redirect to a path that is appended to the domain root.
👤huu
- Django remove user from all groups
- How to get coverage data from a django app when running in gunicorn
Source:stackexchange.com