-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Admin page is broken #3
Comments
@fido1hn Are you sure about that though? because I remember it worked. Anyways I'll take a look at it. Thanks. |
Please take a look. |
@fido1hn had a similar issue, try logging in with the email adress rather than the username |
The boilerplate doesn't include username-based auth, it's email/phone number with a password. If you want to have the default username-based authentication, you can add it to the authentication layer as @fido1hn mentioned. Thanks. |
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
The text was updated successfully, but these errors were encountered: