summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2011-12-09 20:46:10 +0000
committerAdrian Holovaty <adrian@holovaty.com>2011-12-09 20:46:10 +0000
commit804a38c36945af72fced57af27469a96c8c47c55 (patch)
tree1952dfcb519255383b63fa5565329ff2206cbc22 /docs/ref
parent346324f1312654e9ee76c9b435583d7b2f009c90 (diff)
Made some small clarifications to contrib/admin/index.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17178 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/admin/index.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 5d76c52d2a..91b44dc3f3 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -28,7 +28,8 @@ There are seven steps in activating the Django admin site:
3. Add ``django.contrib.messages.context_processors.messages`` to
:setting:`TEMPLATE_CONTEXT_PROCESSORS` and
:class:`~django.contrib.messages.middleware.MessageMiddleware` to
- :setting:`MIDDLEWARE_CLASSES`.
+ :setting:`MIDDLEWARE_CLASSES`. (These are both active by default, so
+ you only need to do this if you've manually tweaked the settings.)
4. Determine which of your application's models should be editable in the
admin interface.
@@ -42,6 +43,9 @@ There are seven steps in activating the Django admin site:
7. Hook the ``AdminSite`` instance into your URLconf.
+After you've taken these steps, you'll be able to use your Django admin site
+by visiting the URL you hooked it into (``/admin/``, by default).
+
Other topics
------------