Changes between Initial Version and Version 2 of Ticket #8435
- Timestamp:
- Aug 25, 2008, 1:31:55 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8435
- Property Milestone 1.0 maybe → 1.0
- Property Triage Stage Unreviewed → Accepted
- Property Component Forms → Documentation
- Property Summary Using multiple formsets within a single template → Document formset's `prefix` argument.
-
Ticket #8435 – Description
initial v2 1 ''See Brian's comment; this is a doc issue. Original report follows -- JKM'' 2 1 3 As of this moment one is able to utilize multiple formsets within a single view, as long as one does not use the same variable name for the fields in the respective forms. But this breaks down on the template level, specifically the management_form portion of formsets. The variables form-TOTAL_FORMS and form-INITIAL_FORMS are shared for all formsets when you include each formset's management_form in the template: {{ formset.management_form }}. 2 4