summaryrefslogtreecommitdiff
path: root/docs/topics/forms/modelforms.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/forms/modelforms.txt')
-rw-r--r--docs/topics/forms/modelforms.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index 48e045442b..38784f9566 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -836,6 +836,12 @@ to the database. If your formset contains a ``ManyToManyField``, you'll also
need to call ``formset.save_m2m()`` to ensure the many-to-many relationships
are saved properly.
+.. note::
+
+ While calling ``formset.save(commit=False)`` does not save new or changed
+ objects to the database, it *does* delete objects that have been marked for
+ deletion. This behavior will be corrected in Django 1.7.
+
.. _model-formsets-max-num:
Limiting the number of editable objects