Changeset 9539
- Timestamp:
- 12/01/08 22:07:43 (1 month ago)
- Files:
-
- django/trunk/docs/topics/forms/modelforms.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/topics/forms/modelforms.txt
r9454 r9539 197 197 the database. In this case, it's up to you to call ``save()`` on the resulting 198 198 model instance. This is useful if you want to do custom processing on the 199 object before saving it. ``commit`` is ``True`` by default. 199 object before saving it, or if you want to use on of the specialised 200 :ref:`model saving options <ref-models-force-insert>`. ``commit`` is ``True`` by default. 200 201 201 202 Another side effect of using ``commit=False`` is seen when your model has
