Fixed #10538: use a prefix for HTML ids on the admin doc page to avoid conflicts with existing elements. Thanks, Justin Lilly.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10343 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2009-04-01 21:33:22 +00:00
parent 2a994716a1
commit a50c6f1f24
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<div id="content-main">
{% for group in grouped_models %}
<div class="module">
<h2 id="{{ group.grouper }}">{{ group.grouper|capfirst }}</h2>
<h2 id="app-{{ group.grouper }}">{{ group.grouper|capfirst }}</h2>
<table class="xfull">
{% for model in group.list %}