summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/api.txt14
-rw-r--r--docs/ref/forms/fields.txt2
-rw-r--r--docs/ref/forms/renderers.txt2
-rw-r--r--docs/ref/forms/widgets.txt6
4 files changed, 0 insertions, 24 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
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index 6108932d58..8309f5d38b 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -399,8 +399,6 @@ template, see also :ref:`overriding-built-in-field-templates`.
.. attribute:: Field.bound_field_class
-.. versionadded:: 5.2
-
The ``bound_field_class`` attribute allows a per-field override of
:attr:`.Form.bound_field_class`.
diff --git a/docs/ref/forms/renderers.txt b/docs/ref/forms/renderers.txt
index 81bdc29cb4..742ed85f59 100644
--- a/docs/ref/forms/renderers.txt
+++ b/docs/ref/forms/renderers.txt
@@ -67,8 +67,6 @@ should return a rendered template (as a string) or raise
.. attribute:: bound_field_class
- .. versionadded:: 5.2
-
The default class used to represent form fields across the project.
Defaults to :class:`.BoundField` class.
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 8c19bf1206..80047aabc5 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -564,8 +564,6 @@ These widgets make use of the HTML elements ``input`` and ``textarea``.
``ColorInput``
~~~~~~~~~~~~~~
-.. versionadded:: 5.2
-
.. class:: ColorInput
* ``input_type``: ``'color'``
@@ -575,8 +573,6 @@ These widgets make use of the HTML elements ``input`` and ``textarea``.
``SearchInput``
~~~~~~~~~~~~~~~
-.. versionadded:: 5.2
-
.. class:: SearchInput
* ``input_type``: ``'search'``
@@ -586,8 +582,6 @@ These widgets make use of the HTML elements ``input`` and ``textarea``.
``TelInput``
~~~~~~~~~~~~
-.. versionadded:: 5.2
-
.. class:: TelInput
* ``input_type``: ``'tel'``