Changes between Initial Version and Version 2 of Ticket #9284
- Timestamp:
- Mar 19, 2009, 10:07:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9284
- Property Status new → reopened
- Property Has patch set
- Property Triage Stage Unreviewed → Design decision needed
- Property Summary Formsets don't call form's save → BaseModelFormSet and BaseInlineFormSet should call ModelForm.save() when saving objects
-
Ticket #9284 – Description
initial v2 1 Would it not be better to have the formset call each form's save method explicitly when the formset's save is called? 2 It seems it would make some logic more centralized. 1 The most current code is at http://github.com/jkocherhans/django/tree/formset-updates 2 3 This introduces some backwards incompatibilities for people who overrode either type of formset's {{{__init__}}} method, but this is how I would have written the model formset code if we'd actually had modelforms first. This doesn't really solve any specific problems that I know of.