Re: my form "didn't return an HttpResponse object."

2008-07-07 Thread rui
Remember to always _return_ a HttpResponse from your view. def myview(request): return HttpResponse("Hello World") or def myotherview(request): return render_to_response("mytemplate.html", locals()) Cheers and good luck. -- Rui On Mon, Jul 7, 2008 at 12:14 PM, Malcolm Tredinnick

Re: my form "didn't return an HttpResponse object."

2008-07-07 Thread Malcolm Tredinnick
On Mon, 2008-07-07 at 08:10 -0700, joshuajonah wrote: > I'm not sure where I'm going wrong here. I have a form, when i submit > it, even blank if gives me this error. I have tried changing it to > POST and then back to a GET submit, but it still doesn't get the > response. > > Here's the debug p

my form "didn't return an HttpResponse object."

2008-07-07 Thread joshuajonah
I'm not sure where I'm going wrong here. I have a form, when i submit it, even blank if gives me this error. I have tried changing it to POST and then back to a GET submit, but it still doesn't get the response. Here's the debug page with bonus GET vars too! (this way both POST and GET vars are b