Changeset 2770
- Timestamp:
- 04/28/06 14:47:46 (2 years ago)
- Files:
-
- django/branches/magic-removal/docs/forms.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/docs/forms.txt
r2765 r2770 163 163 return render_to_response('places/errors.html', {'errors': errors}) 164 164 else: 165 manipulator.do_html2python( request.POST)166 new_place = manipulator.save( request.POST)165 manipulator.do_html2python(new_data) 166 new_place = manipulator.save(new_data) 167 167 return HttpResponse("Place created: %s" % new_place) 168 168
