Author: russellm
Date: 2009-06-24 09:22:11 -0500 (Wed, 24 Jun 2009)
New Revision: 11101
Modified:
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
Log:
[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.
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-06-24 14:21:19 UTC (rev 11100)
+++
django/branches/releases/1.0.X/django/contrib/admindocs/templates/admin_doc/model_index.html
2009-06-24 14:22:11 UTC (rev 11101)
@@ -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>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---