diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-09-14 12:59:39 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-09-14 12:59:39 +0000 |
| commit | 47091ab5b5fd6efcbeb338b903e8ba7394c3ac14 (patch) | |
| tree | 0b846d90081936d04f00e66b0a17d78becfaae34 /docs | |
| parent | c9f0dd1ed6277ca234af61f62bef0f86697a6cea (diff) | |
Fixed #9032: Corrected some minor typos in the admin docs. Thanks to rduffield for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9028 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/admin.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/admin.txt b/docs/ref/contrib/admin.txt index 19e836fd3f..a7101d56fb 100644 --- a/docs/ref/contrib/admin.txt +++ b/docs/ref/contrib/admin.txt @@ -41,7 +41,7 @@ There are five steps in activating the Django admin site: The ``ModelAdmin`` class is the representation of a model in the admin interface. These are stored in a file named ``admin.py`` in your application. -Let's take a look at a very simple example the ``ModelAdmin``:: +Let's take a look at a very simple example of the ``ModelAdmin``:: from django.contrib import admin from myproject.myapp.models import Author @@ -159,7 +159,7 @@ The ``field_options`` dictionary can have the following keys: 'classes': ['wide', 'extrapretty'], } - Two useful classes defined by the default admin-site stylesheet are + Two useful classes defined by the default admin site stylesheet are ``collapse`` and ``wide``. Fieldsets with the ``collapse`` style will be initially collapsed in the admin and replaced with a small "click to expand" link. Fieldsets with the ``wide`` style will be |
