Changeset 1353
- Timestamp:
- 11/22/05 08:24:07 (3 years ago)
- Files:
-
- django/trunk/docs/forms.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/forms.txt
r1263 r1353 101 101 information to the user is any sort of useful way. 102 102 103 * You'll have to separate create a form (and view) that submits to this103 * You'll have to separately create a form (and view) that submits to this 104 104 page, which is a pain and is redundant. 105 105 … … 306 306 raise Http404 307 307 308 # Grab the Place object i squestion for future use.308 # Grab the Place object in question for future use. 309 309 place = manipulator.original_object 310 310
