-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refs #32819 -- Added id to ErrorList class and template. #18871
Conversation
af927c7
to
ecc0259
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for pulling this out @smithdc1 ⭐
@@ -1043,6 +1043,13 @@ Customizing the error list format | |||
Defaults to ``None`` which means to use the default renderer | |||
specified by the :setting:`FORM_RENDERER` setting. | |||
|
|||
.. attribute:: field_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think it's worth mentioning that this defaults to the auto_id for field errors and no id is associated to non-field errors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made some changes here, could you have another look? I'm not sure if we need to go further and mention non-field errors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great thank you!
4d2c195
to
a986c89
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked the docs and the rendering of errors seems to always have auto_id=False
so I don't think we need any more doc updates 🎊
I have a suggestion on the release note but otherwise I think this is good to go 👍
docs/ref/forms/api.txt
Outdated
@@ -1416,7 +1430,7 @@ Methods of ``BoundField`` | |||
|
|||
.. method:: BoundField.render(template_name=None, context=None, renderer=None) | |||
|
|||
The render method is called by ``as_field_group``. All arguments are | |||
The render method is called by ``as_field_group``. All arguments are |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This disappears when rebasing main 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll rebase 👍
docs/releases/5.2.txt
Outdated
* :class:`~django.forms.ErrorList` now accepts a ``field_id`` argument and an | ||
``id`` HTML element is added to the default ``ErrorList`` template. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* :class:`~django.forms.ErrorList` now accepts a ``field_id`` argument and an | |
``id`` HTML element is added to the default ``ErrorList`` template. | |
* The new ``field_id`` argument for :class:`~django.forms.ErrorList` allows an | |
HTML ``id`` attribute to be added in the error template. The default template | |
uses the format ``id="{{ field_id }}_error"`` where ``field_id`` is the | |
field's :attr:`~.BoundField.auto_id`. |
Possibly? Or
* The new ``field_id`` argument for :class:`~django.forms.ErrorList` allows an
HTML ``id`` attribute to be added in the error template. See
:attr:`.ErrorList.field_id` for details.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like your second suggestion.
30df69b
to
7126d66
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you ⭐
Trac ticket number
ticket-32819
Branch description
Step 1 of ticket 32819 is to add an id to the error list template so the
aria-describedby
has something to point to. See #17520Checklist
main
branch.