diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-24 14:22:11 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-24 14:22:11 +0000 |
| commit | 34fbf191c14b7891a2ee74bca91cc5411b80ef6f (patch) | |
| tree | 4a27d44c1d2ddb6a90800d554ca28f87c2c8b159 | |
| parent | 60ec0bdec2e3eb4367b6a3687db3b52936353cf2 (diff) | |
[1.0.X] Fixed #11327 -- Added missing prefix in HTML id in admin-docs. Prefix originally added in r10343, but missed the second usage. Thanks to Nathan for the report and patch.
Merge of r11096 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11101 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admindocs/templates/admin_doc/model_index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admindocs/templates/admin_doc/model_index.html b/django/contrib/admindocs/templates/admin_doc/model_index.html index 4dd7caa2a6..47c94c0c70 100644 --- a/django/contrib/admindocs/templates/admin_doc/model_index.html +++ b/django/contrib/admindocs/templates/admin_doc/model_index.html @@ -36,7 +36,7 @@ <ul> {% regroup models by app_label as grouped_models %} {% for group in grouped_models %} - <li><a href="#{{ group.grouper }}">{{ group.grouper|capfirst }}</a></li> + <li><a href="#app-{{ group.grouper }}">{{ group.grouper|capfirst }}</a></li> {% endfor %} </ul> </div> |
