Ticket #5706: 5706.diff
File 5706.diff, 1.7 KB (added by , 17 years ago) |
---|
-
django/contrib/admin/templates/admin_doc/template_tag_index.html
14 14 {% for library in tag_libraries %} 15 15 <div class="module"> 16 16 <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2> 17 {% if library.grouper %}<p class="small quiet">To use these tags, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the tag.</p><hr >{% endif %}17 {% if library.grouper %}<p class="small quiet">To use these tags, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the tag.</p><hr />{% endif %} 18 18 {% for tag in library.list|dictsort:"name" %} 19 19 <h3 id="{{ tag.name }}">{{ tag.name }}</h3> 20 20 <h4>{{ tag.title }}</h4> -
django/contrib/admin/templates/admin_doc/view_index.html
30 30 31 31 {% for view in site_views.list|dictsort:"url" %} 32 32 {% ifchanged %} 33 <h3><a href="{{ view.module }}.{{ view.name }}/" />{{ view.url|escape }}</a></h3>33 <h3><a href="{{ view.module }}.{{ view.name }}/">{{ view.url|escape }}</a></h3> 34 34 <p class="small quiet">View function: {{ view.module }}.{{ view.name }}</p> 35 35 <p>{{ view.title }}</p> 36 36 <hr>