Opened 2 years ago
Last modified 2 months ago
#32819 new Bug
Fields’ help text and errors should be associated with input
Reported by: | Thibaud Colas | Owned by: | Gregor Jerše |
---|---|---|---|
Component: | Forms | Version: | dev |
Severity: | Normal | Keywords: | accessibility, ui, forms |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | yes |
Description (last modified by )
With Django’s default field rendering, all field errors are rendered as a list above the field’s label, and help text is rendered after the field’s form element. Example with as_p
:
<ul class="errorlist"> <li>This field is required.</li> </ul> <p> <label for="id_duration_required">Duration required:</label> <input type="text" name="duration_required" required="" id="id_duration_required"> <span class="helptext">Help</span> </p>
One problem for screen reader users is that the association between the errors and the field, and between the help text and the field, is only communicated visually. This is a failure of either WCAG 2.1 level A SC 1.3.1: Info and Relationships, or SC 3.3.2: Labels or Instructions. More importantly, it just makes it harder than necessary for screen reader users to make use of help text, and to identify error messages.
The fix is relatively straightforward – using aria-describedby
, as documented in the (non-normative) ARIA1 Using the aria-describedby property to provide a descriptive label for user interface controls technique. Here is another well-known accessibility-oriented UI library that implements this technique: GOV.UK design system – text input with error message.
Here is what implementing aria-describedby
would look like in the same example as above:
<div class="errorlist" id="id_duration_required_errorlist"> <p>This field is required.</p> </div> <p> <label for="id_duration_required">Duration required:</label> <input type="text" name="duration_required" required="" id="id_duration_required" aria-describedby="id_duration_required_errorlist id_duration_required_helptext"> <span class="helptext" id="id_duration_required_helptext">Help</span> </p>
We have additional id
attributes, aria-describedby
, and errorlist
is no longer a <ul>
. Result in VoiceOver:
Unfortunately I tried to have this with the errorlist
kept as a ul
, but it wasn’t announced by VoiceOver. I haven’t heard of this limitation before so am not sure why that might be the case – I’d appreciate others taking a look if possible.
Attachments (1)
Change History (18)
Changed 2 years ago by
Attachment: | email-required-ariadescribedby.gif added |
---|
comment:1 Changed 2 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 2 years ago by
Component: | contrib.admin → Forms |
---|
comment:3 Changed 2 years ago by
Summary: | Django forms - fields’ help text and errors should be associated with input → Fields’ help text and errors should be associated with input |
---|---|
Triage Stage: | Unreviewed → Accepted |
Thanks. Ideally, we should avoid changing <ul>
to <div>
. Maybe <ul>
could be wrapped by <div>
.
comment:4 Changed 2 years ago by
Owner: | changed from nobody to Hasan Ramezani |
---|---|
Status: | new → assigned |
I created a draft PR.
@Mariusz, Could you please check it and let me know if I choose the right direction to fix the problem? If so, I can continue with test adjustment.
@Thibaud, It would be great if you can if it will produce your desired output.
comment:5 Changed 2 years ago by
Owner: | Hasan Ramezani deleted |
---|---|
Status: | assigned → new |
comment:6 Changed 22 months ago by
Owner: | set to PriyanshuGarg26 |
---|---|
Status: | new → assigned |
comment:7 Changed 12 months ago by
Owner: | changed from PriyanshuGarg26 to Nimra |
---|
comment:9 Changed 4 months ago by
Owner: | changed from Nimra to Gregor Jerše |
---|
comment:10 Changed 4 months ago by
Patch needs improvement: | unset |
---|
comment:12 Changed 4 months ago by
Version: | 3.2 → dev |
---|
comment:13 Changed 4 months ago by
Patch needs improvement: | set |
---|
Note that the PR focuses on solving this issue for help_text
.
comment:14 Changed 3 months ago by
Patch needs improvement: | unset |
---|---|
Triage Stage: | Accepted → Ready for checkin |
comment:16 Changed 2 months ago by
Resolution: | fixed |
---|---|
Status: | closed → new |
Reopening as the errors case still requires fixing.
comment:17 Changed 2 months ago by
Has patch: | unset |
---|---|
Triage Stage: | Ready for checkin → Accepted |
Screen recording of the VoiceOver text-to-speech output, announcing the field label, then error message, then help text.