Commit a50c6f1f authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Fixed #10538: use a prefix for HTML ids on the admin doc page to avoid...

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
parent 2a994716
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 %}