Changes between Initial Version and Version 1 of Ticket #34832
- Timestamp:
- Sep 13, 2023, 1:06:56 AM (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34832 – Description
initial v1 1 The Django admin uses a `<div id="header"></div>` for its header area. Switching this to a `<header>` tag or adding a `role="banner"` attribute to the div would help screen reader users navigate the interface – they would have an easier time bypassing the whole area when going through the page sequentially, and would also be able to jump straight to the header from any point on the page.1 Related: [https://code.djangoproject.com/ticket/34833 #34833]. The Django admin uses a `<div id="header"></div>` for its header area. Switching this to a `<header>` tag or adding a `role="banner"` attribute to the div would help screen reader users navigate the interface – they would have an easier time bypassing the whole area when going through the page sequentially, and would also be able to jump straight to the header from any point on the page. 2 2 3 3 Usage of the correct HTML header tag is ideal, but might prove problematic if CSS was written with overly specific HTML elements. We can get the same benefits for screen reader users with `role="banner"`.