Changeset 3914
- Timestamp:
- 10/23/06 02:51:29 (2 years ago)
- Files:
-
- django/trunk/docs/forms.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/forms.txt
r3883 r3914 212 212 manipulator = Place.AddManipulator() 213 213 214 if request. POST:214 if request.method == 'POST': 215 215 # If data was POSTed, we're trying to create a new Place. 216 216 new_data = request.POST.copy() … … 310 310 place = manipulator.original_object 311 311 312 if request. POST:312 if request.method == 'POST': 313 313 new_data = request.POST.copy() 314 314 errors = manipulator.get_validation_errors(new_data) … … 392 392 def contact_form(request): 393 393 manipulator = ContactManipulator() 394 if request. POST:394 if request.method == 'POST': 395 395 new_data = request.POST.copy() 396 396 errors = manipulator.get_validation_errors(new_data)
