Ticket #17138: html5-remove-summary-17138.diff

File html5-remove-summary-17138.diff, 861 bytes (added by teraom, 12 years ago)
  • django/contrib/admin/templates/admin/index.html

     
    1515{% if app_list %}
    1616    {% for app in app_list %}
    1717        <div class="module">
    18         <table summary="{% blocktrans with name=app.name %}Models available in the {{ name }} application.{% endblocktrans %}">
     18        <table>
     19          <caption>
     20            {% blocktrans with name=app.name %}Models available in the {{ name }} application.{% endblocktrans %}>
     21          </caption>
    1922        <caption><a href="{{ app.app_url }}" class="section">{% blocktrans with name=app.name %}{{ name }}{% endblocktrans %}</a></caption>
    2023        {% for model in app.models %}
    2124            <tr>
Back to Top