#25033 closed Cleanup/optimization (fixed)
Missing django.contrib.auth.context_processors.auth dependency for django.contrib.admin app
Reported by: | kowal-tbg | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.8 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
As we can see here:
https://github.com/django/django/blob/stable/1.8.x/django/contrib/admin/sites.py#L191-196
the django.contrib.admin application requires django.contrib.auth.context_processors.auth, but the current documentation:
https://docs.djangoproject.com/en/1.8/ref/contrib/admin/
does not mention it. I received the ImproperlyConfigured exception when I tried to do 'makemigrations' after enabling django.contrib.admin according to the documentation in my project. This also may affect other Django versions.
Note:
See TracTickets
for help on using tickets.
In f59667c: