Changes between Version 1 and Version 2 of Ticket #34919


Ignore:
Timestamp:
Oct 20, 2023, 11:20:00 AM (7 months ago)
Author:
Louis-Cloud
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34919 – Description

    v1 v2  
    11There are a number of tables throughout [https://static-django-demo.netlify.app/django_admin_tests/v5.0/english/admin/docs/models/contenttypes.contenttype/ Django's admin docs] that are lacking the `scope` attribute. Having this attribute in the table headers makes table navigation easier for a screen reader user.
     2
     3=== Acceptance Criteria
     4* All table column header (th) needs to have a `scope = "col"` attribute.
     5* All table row headers (first column th) should have a `scope = "row"` attribute
    26
    37=== Relevant Files:
     
    59* django/contrib/admindocs/templates/admin_doc/model_index.html
    610
    7 === Acceptance Criteria
    8 * All table column header (th) needs to have a `scope = "col"` attribute.
    9 * All table row headers (first column th) should have a `scope = "row"` attribute
    10 
    1111=== For more information
    1212* [https://www.w3.org/WAI/tutorials/tables/two-headers/#table-with-header-cells-in-the-top-row-and-first-column W3 - Tables with Two Headers]
Back to Top