summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-09-16 12:19:44 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-09-16 12:19:44 +0000
commita7dd69c07962e9a3d286a8574c93d152acf430cc (patch)
treed4a6d1c92fa010f5d1f3f533e6555954e77f9a7a
parent5074a4324120659b9ff550d1abcbb43eb58cc9c1 (diff)
[1.1.X] Fixed some ReST markup in admin installation docs.
Merge of r11580 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11584 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/contrib/admin/index.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index c5169be214..c1e05eda1d 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -27,12 +27,12 @@ Overview
There are six steps in activating the Django admin site:
- 1. Add :class:``django.contrib.admin`` to your :setting:``INSTALLED_APPS``
+ 1. Add ``'django.contrib.admin'`` to your :setting:`INSTALLED_APPS`
setting.
- 2. Admin has two dependencies - :class:``django.contrib.auth`` and
- :class:``django.contrib.contenttypes``. If these applications are not
- in your :setting:``INSTALLED_APPS`` list, add them.
+ 2. Admin has two dependencies - ``django.contrib.auth`` and
+ ``django.contrib.contenttypes``. 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
admin interface.