Doc'd the need to provide initial for formset submissions.

This commit is contained in:
Tim Graham 2016-10-10 15:36:21 -04:00 committed by GitHub
parent a840710e1e
commit 80f5a4d87a
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,11 @@ There are now a total of three forms showing above. One for the initial data
that was passed in and two extra forms. Also note that we are passing in a
list of dictionaries as the initial data.
If you use an ``initial`` for displaying a formset, you should pass the same
``initial`` when processing that formset's submission so that the formset can
detect which forms were changed by the user. For example, you might have
something like: ``ArticleFormSet(request.POST, initial=[...])``.
.. seealso::
:ref:`Creating formsets from models with model formsets <model-formsets>`.