summaryrefslogtreecommitdiff
path: root/docs/topics/forms
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-16 07:43:34 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-20 21:23:01 +0200
commit97237ad3feed80407ed1884ea84cf00fd9fea367 (patch)
treed087502fab09167246a610d7987d135c59288403 /docs/topics/forms
parent810bca5a1ae33a9c8b54a2a516aa5bb8ec013c3f (diff)
Removed versionadded/changed annotations for 3.2.
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/formsets.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index e15f11dea0..92810091ec 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -131,8 +131,6 @@ validation. See :ref:`validate_max`.
Limiting the maximum number of instantiated forms
=================================================
-.. versionadded:: 3.2
-
The ``absolute_max`` parameter to :func:`.formset_factory` allows limiting the
number of forms that can be instantiated when supplying ``POST`` data. This
protects against memory exhaustion attacks using forged ``POST`` requests::
@@ -268,11 +266,6 @@ the management data by rendering ``{{ my_formset.management_form }}``
client-side code. These fields are not required and so are not shown in
the example ``POST`` data.
-.. versionchanged:: 3.2
-
- ``formset.is_valid()`` now returns ``False`` rather than raising an
- exception when the management form is missing or has been tampered with.
-
``total_form_count`` and ``initial_form_count``
-----------------------------------------------
@@ -297,8 +290,6 @@ forms with JavaScript.
``error_messages``
------------------
-.. versionadded:: 3.2
-
The ``error_messages`` argument lets you override the default messages that the
formset will raise. Pass in a dictionary with keys matching the error messages
you want to override. For example, here is the default error message when the
@@ -682,8 +673,6 @@ use with ``can_delete``::
``can_delete_extra``
--------------------
-.. versionadded:: 3.2
-
.. attribute:: BaseFormSet.can_delete_extra
Default: ``True``