Ticket #24541: 24541.diff

File 24541.diff, 714 bytes (added by Tim Graham, 9 years ago)
  • docs/topics/forms/modelforms.txt

    diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
    index 383284a..d35759e 100644
    a b As with regular formsets, it's possible to :ref:`specify initial data  
    861861parameter when instantiating the model formset class returned by
    862862:func:`~django.forms.models.modelformset_factory`. However, with model
    863863formsets, the initial values only apply to extra forms, those that aren't
    864 attached to an existing model instance.
     864attached to an existing model instance. If the extra forms with initial data
     865aren't changed by the user, they won't be validated or saved.
    865866
    866867.. _saving-objects-in-the-formset:
    867868
Back to Top