summaryrefslogtreecommitdiff
path: root/docs/topics/forms
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-12-26 21:47:29 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-12-29 21:59:08 +0100
commit7ee7599ab389129c539f62b8295fcf1128defa13 (patch)
treeb0cfe4a76fd13db4b1e27a1dd8053739014f015d /docs/topics/forms
parentef017a5f00d9e84059e00e8fea123be51b293f75 (diff)
Removed versionadded/changed annotations dating back to 1.4.
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/formsets.txt2
-rw-r--r--docs/topics/forms/modelforms.txt2
2 files changed, 0 insertions, 4 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 76849c8e23..b5b02581cd 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -139,8 +139,6 @@ As we can see, ``formset.errors`` is a list whose entries correspond to the
forms in the formset. Validation was performed for each of the two forms, and
the expected error message appears for the second item.
-.. versionadded:: 1.4
-
We can also check if form data differs from the initial data (i.e. the form was
sent without any data)::
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index 67d539447c..802150d6c3 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -625,8 +625,6 @@ exclude::
Providing initial values
------------------------
-.. versionadded:: 1.4
-
As with regular formsets, it's possible to :ref:`specify initial data
<formsets-initial-data>` for forms in the formset by specifying an ``initial``
parameter when instantiating the model formset class returned by