Changeset 6735
- Timestamp:
- 11/29/07 10:32:29 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/templates/admin_doc/template_filter_index.html
r6391 r6735 14 14 <div class="module"> 15 15 <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in filters{% endif %}</h2> 16 {% if library.grouper %}<p class="small quiet">To use these filters, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the filter.</p><hr >{% endif %}16 {% if library.grouper %}<p class="small quiet">To use these filters, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the filter.</p><hr />{% endif %} 17 17 {% for filter in library.list|dictsort:"name" %} 18 18 <h3 id="{{ filter.name }}">{{ filter.name }}</h3> django/trunk/django/contrib/admin/templates/admin_doc/template_tag_index.html
r6391 r6735 14 14 <div class="module"> 15 15 <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2> 16 {% 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 %}16 {% 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 17 {% for tag in library.list|dictsort:"name" %} 18 18 <h3 id="{{ tag.name }}">{{ tag.name }}</h3> django/trunk/django/contrib/admin/templates/admin_doc/view_index.html
r6391 r6735 30 30 {% for view in site_views.list|dictsort:"url" %} 31 31 {% ifchanged %} 32 <h3><a href="{{ view.module }}.{{ view.name }}/" />{{ view.url|escape }}</a></h3>32 <h3><a href="{{ view.module }}.{{ view.name }}/">{{ view.url|escape }}</a></h3> 33 33 <p class="small quiet">View function: {{ view.module }}.{{ view.name }}</p> 34 34 <p>{{ view.title }}</p> 35 <hr >35 <hr /> 36 36 {% endifchanged %} 37 37 {% endfor %}
