Changes between Version 144 and Version 145 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Dec 16, 2007, 12:38:02 AM (16 years ago)
Author:
Manoj Govindan <egmanoj@…>
Comment:

Made the description a little more detailed.

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v144 v145  
    9797This now becomes
    9898{{{
    99    form = MyModelForm(request.POST.copy())
    100 }}}
     99   form = MyModelForm(request.POST.copy(), instance = instance)
     100}}}
     101
     102The instance argument is optional. If missing, a new instance of the model associated with the {{{ModelForm}}} is created.
    101103
    102104== Changed 'spaceless' template tag to remove all spaces ==
Back to Top