summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/admin
diff options
context:
space:
mode:
authorJulien Phalip <jphalip@gmail.com>2011-10-03 08:06:01 +0000
committerJulien Phalip <jphalip@gmail.com>2011-10-03 08:06:01 +0000
commitc2b9f6496e59c9268fb265ea80df8c8d7ec88034 (patch)
tree94e8c615e5ee9294ca5f5acc1aebcb0935b11bd2 /docs/ref/contrib/admin
parent0d9b6a5bc43c06716212bd3f847460ce985381aa (diff)
Added some sphinx cross-reference links to the built-in template tags and filters in multiple areas of the documentation. Also fixed a few minor inconsistencies and did a little PEP8 cleanup while I was at it.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/contrib/admin')
-rw-r--r--docs/ref/contrib/admin/index.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index e2d84a861b..fbe4c2a741 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1962,8 +1962,8 @@ if you specifically wanted the admin view from the admin instance named
For more details, see the documentation on :ref:`reversing namespaced URLs
<topics-http-reversing-url-namespaces>`.
-To allow easier reversing of the admin urls in templates, Django provides an
-``admin_url`` filter which takes an action as argument:
+To allow easier reversing of the admin urls in templates, Django provides an
+``admin_urlname`` filter which takes an action as argument:
.. code-block:: html+django
@@ -1974,5 +1974,5 @@ To allow easier reversing of the admin urls in templates, Django provides an
The action in the examples above match the last part of the URL names for
:class:`ModelAdmin` instances described above. The ``opts`` variable can be any
-object which has an ``app_label`` and ``module_name`` and is usually supplied
+object which has an ``app_label`` and ``module_name`` and is usually supplied
by the admin views for the current model.