Author: jacob
Date: 2009-04-01 16:35:00 -0500 (Wed, 01 Apr 2009)
New Revision: 10344

Modified:
   
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
Log:
[1.0.X] Fixed #10538: use a prefix for HTML ids on the admin doc page to avoid 
conflicts with existing elements. Thanks, Justin Lilly. Backport of r10343 from 
trunk.

Modified: 
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
===================================================================
--- 
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
        2009-04-01 21:33:22 UTC (rev 10343)
+++ 
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
        2009-04-01 21:35:00 UTC (rev 10344)
@@ -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 %}


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to