Changes between Version 1 and Version 2 of Ticket #34919
- Timestamp:
- Oct 20, 2023, 11:20:00 AM (13 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34919 – Description
v1 v2 1 1 There 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 2 6 3 7 === Relevant Files: … … 5 9 * django/contrib/admindocs/templates/admin_doc/model_index.html 6 10 7 === Acceptance Criteria8 * 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"` attribute10 11 11 === For more information 12 12 * [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]