Django

Code

Changeset 1791

Show
Ignore:
Timestamp:
12/28/05 17:32:56 (3 years ago)
Author:
adrian
Message:

Fixed #1102 -- Fixed some HTML validation errors in admin templates. Thanks, Luke Plant

Files:

Legend:

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

    r1434 r1791  
     1{% if results %} 
    12<table cellspacing="0"> 
    23<thead> 
     
    89</tr> 
    910</thead> 
     11<tbody> 
    1012{% for result in results %} 
    1113<tr class="{% cycle row1,row2 %}">{% for item in result %}{{ item }}{% endfor %}</tr> 
    1214{% endfor %} 
     15</tbody> 
    1316</table> 
     17{% endif %} 
  • django/trunk/django/contrib/admin/templates/admin/search_form.html

    r1475 r1791  
    33{% if cl.lookup_opts.admin.search_fields %} 
    44<div id="toolbar"><form id="changelist-search" action="" method="get"> 
    5 <label><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" /></label> 
     5<div><!-- DIV needed for valid HTML --> 
     6<label><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" alt="Search" /></label> 
    67<input type="text" size="40" name="{{ search_var }}" value="{{ cl.query|escape }}" id="searchbar" /> 
    78<input type="submit" value="{% trans 'Go' %}" /> 
     
    1213    {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0|escape }}" value="{{ pair.1|escape }}"/>{% endifnotequal %} 
    1314{% endfor %} 
     15</div> 
    1416</form></div> 
    1517<script type="text/javascript">document.getElementById("searchbar").focus();</script>