Django

Code

Changeset 6735

Show
Ignore:
Timestamp:
11/29/07 10:32:29 (1 year ago)
Author:
mtredinnick
Message:

Fixed #5706 -- Fixed a couple of XHTML incompatibilities. Based on a patch from
tvrg.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/admin/templates/admin_doc/template_filter_index.html

    r6391 r6735  
    1414<div class="module"> 
    1515    <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 %} 
    1717    {% for filter in library.list|dictsort:"name" %} 
    1818    <h3 id="{{ filter.name }}">{{ filter.name }}</h3> 
  • django/trunk/django/contrib/admin/templates/admin_doc/template_tag_index.html

    r6391 r6735  
    1414<div class="module"> 
    1515    <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 %} 
    1717    {% for tag in library.list|dictsort:"name" %} 
    1818    <h3 id="{{ tag.name }}">{{ tag.name }}</h3> 
  • django/trunk/django/contrib/admin/templates/admin_doc/view_index.html

    r6391 r6735  
    3030{% for view in site_views.list|dictsort:"url" %} 
    3131{% 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> 
    3333<p class="small quiet">View function: {{ view.module }}.{{ view.name }}</p> 
    3434<p>{{ view.title }}</p> 
    35 <hr
     35<hr /
    3636{% endifchanged %} 
    3737{% endfor %}