summaryrefslogtreecommitdiff
path: root/docs/releases/1.4.txt
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2012-01-15 01:36:14 +0000
committerRamiro Morales <cramm0@gmail.com>2012-01-15 01:36:14 +0000
commite308cfc0e155f51f14c8eb4e678c15c5f632ae30 (patch)
tree037ed46d6790adc32e1483c7240317e5ef31e38c /docs/releases/1.4.txt
parent4e29b70b9dfb836a6ece537728f1ad9702786948 (diff)
Added support for specifying initial values to model formsets and inline formsets.
This make them consistent with the similar capability of regular formsets. Thanks to simon29 form the report and to Claude Paroz for the patch. Fixes #14574. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/releases/1.4.txt')
-rw-r--r--docs/releases/1.4.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index ea3e9a7fc9..9b3c219d31 100644
--- a/docs/releases/1.4.txt
+++ b/docs/releases/1.4.txt
@@ -556,6 +556,12 @@ Django 1.4 also includes several smaller improvements worth noting:
* The MySQL database backend can now make use of the savepoint feature
implemented by MySQL version 5.0.3 or newer with the InnoDB storage engine.
+* It is now possible to pass initial values to the model forms that are part of
+ both model formsets and inline model formset as returned from factory
+ functions ``modelformset_factory`` and ``inlineformset_factory`` respectively
+ just like with regular formsets. However, initial values only apply to extra
+ forms i.e. those which are not bound to an existing model instance.
+
Backwards incompatible changes in 1.4
=====================================