summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-11-15 13:17:55 +0200
committerTim Graham <timograham@gmail.com>2014-11-21 14:23:17 -0500
commit343162410f9270012e4fdd8396d542b39cc63269 (patch)
treed779c67fa55404cb50243034623f13e1edddf057 /docs/ref
parent5b26a014a81ba0d404d46e11d2b45c01d92b97e5 (diff)
Fixed #21753 -- Raised exception when both `form_class` and `fields` are specified.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/class-based-views/mixins-editing.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/ref/class-based-views/mixins-editing.txt b/docs/ref/class-based-views/mixins-editing.txt
index 1a06e2bb97..3dcf28dae3 100644
--- a/docs/ref/class-based-views/mixins-editing.txt
+++ b/docs/ref/class-based-views/mixins-editing.txt
@@ -115,6 +115,17 @@ ModelFormMixin
:attr:`~django.views.generic.detail.SingleObjectMixin.queryset` attributes,
describing the type of object that the ``ModelForm`` is manipulating.
+ 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
+
+ Previously if both ``fields`` and ``form_class`` were specified,
+ ``fields`` was silently ignored.
+
**Mixins**
* :class:`django.views.generic.edit.FormMixin`