Re: Can't get params from HttpRequest.POST
Thanks!That's it! I'm misssing the '/' at the end of the action.
Re: Can't get params from HttpRequest.POST
martinx wrote: This should help: http://code.djangoproject.com/wiki/NewbieMistakes
Can't get params from HttpRequest.POST
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