Changes between Version 144 and Version 145 of BackwardsIncompatibleChanges
- Timestamp:
- Dec 16, 2007, 12:38:02 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v144 v145 97 97 This now becomes 98 98 {{{ 99 form = MyModelForm(request.POST.copy()) 100 }}} 99 form = MyModelForm(request.POST.copy(), instance = instance) 100 }}} 101 102 The instance argument is optional. If missing, a new instance of the model associated with the {{{ModelForm}}} is created. 101 103 102 104 == Changed 'spaceless' template tag to remove all spaces ==