Ticket #12957: scope-col.patch

File scope-col.patch, 653 bytes (added by Chris Adams, 14 years ago)
  • django/contrib/admin/templates/admin/change_list_results.html

    diff --git a/django/contrib/admin/templates/admin/change_list_results.html b/django/contrib/admin/templates/admin/change_list_results.html
    index 381dcb5..26df1a7 100644
    a b  
    22<table cellspacing="0">
    33<thead>
    44<tr>
    5 {% for header in result_headers %}<th{{ header.class_attrib }}>
     5{% for header in result_headers %}<th scope="col"{{ header.class_attrib }}>
    66{% if header.sortable %}<a href="{{ header.url }}">{% endif %}
    77{{ header.text|capfirst }}
    88{% if header.sortable %}</a>{% endif %}</th>{% endfor %}
Back to Top