Ticket #16552: admin_dependencies-16552.diff
File admin_dependencies-16552.diff, 966 bytes (added by , 13 years ago) |
---|
-
docs/ref/contrib/admin/index.txt
19 19 1. Add ``'django.contrib.admin'`` to your :setting:`INSTALLED_APPS` 20 20 setting. 21 21 22 2. Admin has threedependencies - :mod:`django.contrib.auth`,23 :mod:`django.contrib.contenttypes` and :mod:`django.contrib.messages`.24 If these applications are not in your :setting:`INSTALLED_APPS` list,25 add them.22 2. Admin has four dependencies - :mod:`django.contrib.auth`, 23 :mod:`django.contrib.contenttypes`, :mod:`django.contrib.sessions` 24 and :mod:`django.contrib.messages`. If these applications are not in 25 your :setting:`INSTALLED_APPS` list, add them. 26 26 27 27 3. Add ``django.contrib.messages.context_processors.messages`` to 28 28 :setting:`TEMPLATE_CONTEXT_PROCESSORS` and