Changes between Initial Version and Version 2 of Ticket #23672
- Timestamp:
- Oct 17, 2014, 10:13:44 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23672
- Property Summary Add “instances” argument to BaseModelFomset.__init__() → Add “instances” argument to BaseModelFomSet.__init__()
-
Ticket #23672 – Description
initial v2 2 2 3 3 First, as you know, ModelForm can accept instance as keyword arguments. 4 I think that BaseModelFormSet should follow this. Current BaseModelFormSet support save(commit=False), which returns “instances”. But now, we cannot use it without saving in DataBase.4 I think that BaseModelFormSet should follow this. Current BaseModelFormSet support save(commit=False), which returns “instances”. But now, we cannot use it without INSERT in DataBase.. 5 5 6 6 Second, Current BaseModelFormSet accepts “queryset” as keyword argument.