Commit 34fbf191 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

[1.0.X] Fixed #11327 -- Added missing prefix in HTML id in admin-docs. Prefix...

[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
parent 60ec0bde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>