summaryrefslogtreecommitdiff
path: root/docs/topics/forms
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-12 16:27:30 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:11 -0400
commit54848a96dd4a196e81f3d71c61caf84ea8b49f4e (patch)
tree0fe3e51fc3f783adc69c46bb0313514f207f71ab /docs/topics/forms
parent48e7787db599b0103daf70f0ff4968d90b8540aa (diff)
Removed versionadded/changed annotations for 1.8.
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/index.txt4
-rw-r--r--docs/topics/forms/modelforms.txt12
2 files changed, 0 insertions, 16 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index c9cce5121f..27a5314347 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -615,10 +615,6 @@ errors. For example, ``{{ form.non_field_errors }}`` would look like:
<li>Generic validation error</li>
</ul>
-.. versionchanged:: 1.8
-
- The ``nonfield`` class as described in the example above was added.
-
See :doc:`/ref/forms/api` for more on errors, styling, and working with form
attributes in templates.
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index e9898c6fff..6370636d4e 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -436,12 +436,6 @@ In addition, Django applies the following rule: if you set ``editable=False`` on
the model field, *any* form created from the model via ``ModelForm`` will not
include that field.
-.. versionchanged:: 1.8
-
- In older versions, omitting both ``fields`` and ``exclude`` resulted in
- a form with all the model's fields. Doing this now raises an
- :exc:`~django.core.exceptions.ImproperlyConfigured` exception.
-
.. note::
Any fields not included in a form by the above logic
@@ -745,12 +739,6 @@ exclude::
>>> AuthorFormSet = modelformset_factory(Author, exclude=('birth_date',))
-.. versionchanged:: 1.8
-
- In older versions, omitting both ``fields`` and ``exclude`` resulted in
- a formset with all the model's fields. Doing this now raises an
- :exc:`~django.core.exceptions.ImproperlyConfigured` exception.
-
This will create a formset that is capable of working with the data associated
with the ``Author`` model. It works just like a regular formset::