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
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
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
3 matches
Mail list logo