Re: Can't get params from HttpRequest.POST

2005-12-29 Thread martin xus
Thanks!That's it! I'm misssing the '/' at the end of the action.

Re: Can't get params from HttpRequest.POST

2005-12-29 Thread Maniac
martinx wrote: This should help: http://code.djangoproject.com/wiki/NewbieMistakes

Can't get params from HttpRequest.POST

2005-12-29 Thread martinx
I create a template following django's document: {{poll.question}} {%if error_message%}{{error_message}}{%endif%} {%for choice in poll.get_choice_list%} {{choice.choice}} {%endfor%} And try to get params from post: def vote(request, p