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


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

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27280, comment 4

    v1 v2  
    22> Without initial data, the formset will output 1 empty form which isn't very useful for giving examples of ordering and deleting.
    33
    4 ArticleFormSet = formset_factory(ArticleForm, min_num=3, validate_min=True)
     4ArticleFormSet = formset_factory(ArticleForm, can_delete=True)
    55
    66In this case how can a formset with data for 3 forms produce one empty form?
Back to Top