Admin page won't let super users to login, even though they're on the db with all necessary rights. This fixed it for me: AUTHENTICATION_BACKENDS = [ ... 'django.contrib.auth.backends.ModelBackend', ... ] added to config/settings.py
Admin page won't let super users to login, even though they're on the db with all necessary rights.
This fixed it for me:
AUTHENTICATION_BACKENDS = [
...
'django.contrib.auth.backends.ModelBackend',
...
]
added to config/settings.py