Opened 12 years ago
Closed 12 years ago
#19535 closed Uncategorized (invalid)
AUTHENTICATION_BACKENDS setting missing from automatic admin documentation
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | 1.4 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
It'd be good to mention that the following snippet needs to be in settings.py in order for the automatic admin to work
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
)
Note:
See TracTickets
for help on using tickets.
This is the default value of the
AUTHENTICATION_BACKENDS
setting; you don't need to repeat it in your own settings.