8👍
Django redirects to /accounts/profile when it doesn’t know were to redirect to. You can change this behaviour by setting LOGIN_REDIRECT_URL
in settings.py:
LOGIN_REDIRECT_URL = '/'
Source:stackexchange.com
8👍
Django redirects to /accounts/profile when it doesn’t know were to redirect to. You can change this behaviour by setting LOGIN_REDIRECT_URL
in settings.py:
LOGIN_REDIRECT_URL = '/'