From 391ec5a08582f9479366e38afb4cb0547c39f073 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Fri, 29 Mar 2013 18:59:34 +0100 Subject: [PATCH] Fixed #20160 -- Erronous reference to `module_name` in admin doc. Ref #19689. --- docs/ref/contrib/admin/index.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index bc09c36890..c567bc1db4 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -2159,5 +2159,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 -by the admin views for the current model. +object which has an ``app_label`` and ``model_name`` attributes and is usually +supplied by the admin views for the current model.