Ticket #1713: forms.txt.diff
File forms.txt.diff, 644 bytes (added by , 19 years ago) |
---|
-
forms.txt
162 162 if errors: 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 169 169 In this new version, errors will be found -- ``manipulator.get_validation_errors``