summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2011-09-11 05:31:00 +0000
committerJames Bennett <ubernostrum@gmail.com>2011-09-11 05:31:00 +0000
commit7b92ae310d59e39f91e9ee4d887c0ea7ae85e4fd (patch)
treeffb065197de6d7af1bd1a04e35ab9954f041a1fb /docs/ref
parent94524fbfef09bf18422141a2c8c73e880aa25b14 (diff)
Fixed #16552: Noted that contrib.sessions is a requirement for the admin.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/admin/index.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index d68197e57b..e280463f8c 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -19,10 +19,11 @@ There are seven steps in activating the Django admin site:
1. Add ``'django.contrib.admin'`` to your :setting:`INSTALLED_APPS`
setting.
- 2. Admin has three dependencies - :mod:`django.contrib.auth`,
- :mod:`django.contrib.contenttypes` and :mod:`django.contrib.messages`.
- If these applications are not in your :setting:`INSTALLED_APPS` list,
- add them.
+ 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. Add ``django.contrib.messages.context_processors.messages`` to
:setting:`TEMPLATE_CONTEXT_PROCESSORS` and