Changes between Initial Version and Version 1 of Ticket #27280, comment 4


Ignore:
Timestamp:
Sep 28, 2016, 8:30:34 AM (8 years ago)
Author:
Michael

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27280, comment 4

    initial v1  
    22> Without initial data, the formset will output 1 empty form which isn't very useful for giving examples of ordering and deleting.
    33
     4ArticleFormSet = formset_factory(ArticleForm, min_num=3, validate_min=True)
    45
    56In this case how can a formset with data for 3 forms produce one empty form?
    6 In the initial we have meat for 2 forms. And how can it fill the third one?
     7In the initial we have meat for 2 forms. Initial data is completely overlapped with data.
     8From where an empty form materializes then?
    79
    810I have modelled the situation: https://bitbucket.org/Kifsif/formsets/commits/f5e05aa61bcfe4be776bd1acc436589d27c78d29
Back to Top