The error has nothing to do with your form. It's saying that the view
function did not return an HttpResponse object. So have a look at the
view function involved and fix that problem.
Regards,
Malcolm
def myview(request):
return HttpResponse("Hello World")
or
def myotherview(request):
return render_to_response("mytemplate.html", locals())
Cheers and good luck.
--
Rui