Changeset 8125
- Timestamp:
- 07/27/08 18:51:07 (5 months ago)
- Files:
-
- django/trunk/docs/custom_model_fields.txt (modified) (1 diff)
- django/trunk/docs/generic_views.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/custom_model_fields.txt
r8020 r8125 539 539 serialization, the API might change in the future. 540 540 541 Returns a dictionary, mapping the field's attribute name to a flattened string542 version of the data. This method has some internal uses that aren't of 543 interest to use here (mostly having to do with manipulators). For our 544 purposes, it's sufficient to return a one item dictionary that maps the 545 attribute name to a string.541 Returns a dictionary, mapping the field's attribute name to a 542 flattened string version of the data. This method has some internal 543 uses that aren't of interest to use here (mostly having to do with 544 formss). For our purposes, it's sufficient to return a one item 545 dictionary that maps the attribute name to a string. 546 546 547 547 This method is used by the serializers to convert the field into a string for django/trunk/docs/generic_views.txt
r8119 r8125 999 999 A page that displays a form for editing an existing object, redisplaying the 1000 1000 form with validation errors (if there are any) and saving changes to the 1001 object. This uses the automatic manipulators that come with Django models. 1001 object. This uses a form automatically generated from the object's 1002 model class. 1002 1003 1003 1004 **Required arguments:**
