summaryrefslogtreecommitdiff
path: root/docs/ref/forms/api.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/forms/api.txt')
-rw-r--r--docs/ref/forms/api.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index 39cfd8be1e..58494f6067 100644
--- a/docs/ref/forms/api.txt
+++ b/docs/ref/forms/api.txt
@@ -1043,10 +1043,6 @@ If the widget is rendered in a ``<fieldset>`` then ``aria-describedby`` is
added to this element, otherwise it is added to the widget's HTML element (e.g.
``<input>``).
-.. versionchanged:: 5.2
-
- ``aria-describedby`` was added to associate errors with its input.
-
.. _ref-forms-error-list-format:
Customizing the error list format
@@ -1059,10 +1055,6 @@ Customizing the error list format
list of errors. In addition this class has the following attributes and
methods.
- .. versionchanged:: 5.2
-
- The ``field_id`` argument was added.
-
.. attribute:: error_class
The CSS classes to be used when rendering the error list. Any provided
@@ -1076,8 +1068,6 @@ Customizing the error list format
.. attribute:: field_id
- .. versionadded:: 5.2
-
An ``id`` for the field for which the errors relate. This allows an
HTML ``id`` attribute to be added in the error template and is useful
to associate the errors with the field. The default template uses the
@@ -1196,8 +1186,6 @@ Attributes of ``BoundField``
.. attribute:: BoundField.aria_describedby
- .. versionadded:: 5.2
-
Returns an ``aria-describedby`` reference to associate a field with its
help text and errors. Returns ``None`` if ``aria-describedby`` is set in
:attr:`Widget.attrs` to preserve the user defined attribute when rendering
@@ -1505,8 +1493,6 @@ Customizing ``BoundField``
.. attribute:: Form.bound_field_class
-.. versionadded:: 5.2
-
Define a custom :class:`~django.forms.BoundField` class to use when rendering
the form. This takes precedence over the project-level
:attr:`.BaseRenderer.bound_field_class` (along with a custom