[1.3.X] Fixed #16552: Noted that contrib.sessions is a requirement for the admin. Backport of [16806] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16807 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2011-09-11 05:32:14 +00:00
parent 2954c36ff7
commit 0326e2e611

View File

@ -19,8 +19,10 @@ There are six steps in activating the Django admin site:
1. Add ``'django.contrib.admin'`` to your :setting:`INSTALLED_APPS`
setting.
2. Admin has two dependencies - :mod:`django.contrib.auth` and
:mod:`django.contrib.contenttypes`. If these applications are not
2. The admin has four dependencies - :mod:`django.contrib.auth`,
:mod:`django.contrib.contenttypes`,
:mod:`django.contrib.messages` and
:mod:`django.contrib.sessions`. If these applications are not
in your :setting:`INSTALLED_APPS` list, add them.
3. Determine which of your application's models should be editable in the