Opened 19 months ago

Last modified 15 months ago

#34041 assigned Cleanup/optimization

Accessibility improvements for admin breadcrumbs

Reported by: Thibaud Colas Owned by: Jerry Wan
Component: contrib.admin Version: dev
Severity: Normal Keywords: accessibility, landmarks, ARIA
Cc: Tom Carrick Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: yes

Description (last modified by Mariusz Felisiak)

There are two nice and simple accessibility improvements we could make to the Django admin’s breadcrumbs:

  1. (fixed in 872b61193b013a700ff88cf50f0eb2cf2c266ff7) Wrap them in a <nav aria-label="{% translate 'Breadcrumbs' %}>"> region, so they can be identified as a navigation landmark by screen reader users.
  2. Structure the links as a <ol> list with <li> items for each crumb, so screen reader users know how many items there are (visually they don’t need any changes)
  3. Switch the last item to also be a link, with a aria-current="page" attribute, so semantically the last item is marked as "current page" (again doesn’t necessarily need any visual change). Technically this would also work as a span but I believe switching to a link would be a nicer experience (consistent tabbing through all items in the breadcrumb)

All three improvements are based on the Breadcrumb ARIA authoring practices pattern. All can technically be done separately if desired.

Change History (12)

comment:1 by Mariusz Felisiak, 19 months ago

Triage Stage: UnreviewedAccepted

comment:2 by Mariusz Felisiak, 19 months ago

Type: New featureCleanup/optimization

comment:3 by Florian Perucki, 19 months ago

Owner: changed from nobody to Florian Perucki
Status: newassigned

comment:5 by Mariusz Felisiak, 19 months ago

Triage Stage: AcceptedReady for checkin

comment:6 by Mariusz Felisiak <felisiak.mariusz@…>, 19 months ago

In 872b6119:

Refs #34041 -- Added navigation landmark to breadcrumbs in admin.

Thanks Thibaud Colas for pair programming.

comment:7 by Mariusz Felisiak, 19 months ago

Description: modified (diff)
Has patch: unset
Triage Stage: Ready for checkinAccepted

comment:8 by Mariusz Felisiak, 17 months ago

Owner: Florian Perucki removed
Status: assignednew

comment:9 by Jerry Wan, 16 months ago

Owner: set to Jerry Wan
Status: newassigned

comment:11 by Mariusz Felisiak, 15 months ago

Cc: Tom Carrick added

comment:12 by Mariusz Felisiak, 15 months ago

Patch needs improvement: set
Note: See TracTickets for help on using tickets.
Back to Top