Commit 0326e2e6 authored by James Bennett's avatar James Bennett
Browse files

[1.3.X] Fixed #16552: Noted that contrib.sessions is a requirement for the...

[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
parent 2954c36f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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