Changes between Initial Version and Version 1 of Ticket #12960
- Timestamp:
- Feb 25, 2010, 4:41:42 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12960
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #12960 – Description
initial v1 2 2 3 3 Sequence of calls in BaseForm.full_clean() is following: 4 1. - _clean_fields - which calls clean on fields and creates instance with cleaned values 5 2. - _clean_form - which class clean on model, assign return to form.cleaned_data but instance is not updated 6 3. -finally save_instance(construct=False) is called (in previous version of Django model instance was created here from correct cleaned_data)4 1. _clean_fields - which calls clean on fields and creates instance with cleaned values 5 2. _clean_form - which class clean on model, assign return to form.cleaned_data but instance is not updated 6 3. finally save_instance(construct=False) is called (in previous version of Django model instance was created here from correct cleaned_data) 7 7 8 8