summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/class-based-views')
-rw-r--r--docs/topics/class-based-views/generic-editing.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/topics/class-based-views/generic-editing.txt b/docs/topics/class-based-views/generic-editing.txt
index 0ada8db42a..7b3b5083cc 100644
--- a/docs/topics/class-based-views/generic-editing.txt
+++ b/docs/topics/class-based-views/generic-editing.txt
@@ -143,16 +143,6 @@ If you specify both the :attr:`~django.views.generic.edit.ModelFormMixin.fields`
and :attr:`~django.views.generic.edit.FormMixin.form_class` attributes, an
:exc:`~django.core.exceptions.ImproperlyConfigured` exception will be raised.
-.. versionchanged:: 1.8
-
- Omitting the ``fields`` attribute was previously allowed and resulted in a
- form with all of the model's fields.
-
-.. versionchanged:: 1.8
-
- Previously if both ``fields`` and ``form_class`` were specified,
- ``fields`` was silently ignored.
-
Finally, we hook these new views into the URLconf:
.. snippet::