Hello all. I'm facing a really weird problem here. I have this template: <script language='JavaScript'> alert('post : {{ post }}'); </script> <form action='.' method='post' name='myform'> <input type='text' id='bla'> <br> <input type='submit' value='send'> </form>
and this view for the template: def jstest(request): post = request.POST.get('bla', 'no posts') if request.method != 'POST': post = 'No post data sent' return render_to_response('jstest.html', {'post' : post}) However, when I submit the form I get nothing. I've seen what I'm receiving in the POST dictionary, and there's no data at all in it. I'm I doing something really wrong here ? Thanks! Felipe --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---