I am using the svn version of django and have worked through the
tutorials without any problem. I have run into a problem on tutorial 4
- last section - using generic views. I am able to bring up a detail
poll by going to http://127.0.0.1:8000/1/ and then i can select a
choice and vote. However when i vote i get the following message



Page not found (404)
Request Method:         POST
Request URL:    http://127.0.0.1:8000/polls/1/vote/

Using the URLconf defined in mysite.urls, Django tried these URL
patterns, in this order:

   1. ^$
   2. ^(?P<object_id>\d+)/$
   3. ^(?P<object_id>\d+)/results/$
   4. ^(?P<poll_id>\d+)/vote/$

The current URL, polls/1/vote/, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django
settings file. Change that to False, and Django will display a
standard 404 page.

My vote views file reads as follows

...
def vote(request, poll_id):
    p = get_object_or_404(Poll, pk=poll_id)
    try:
        selected_choice = p.choice_set.get(pk=request.POST['choice'])
    except (KeyError, Choice.DoesNotExist):
        # Redisplay the poll voting form.
        return render_to_response('polls/poll_detail.html', {
            'object': p,
            'error_message': "You didn't select a choice.",
        })
    else:
        selected_choice.votes += 1
        selected_choice.save()

        return HttpResponseRedirect(reverse('poll_results',
args=(p.id,)))



Any help / ideas appreciated ! I am banging my head against a brick
wall of incomprehension !


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to