Monday, September 29, 2014

Newbie Question: Django Tutorial Part 4 - Exception Issue

Hi,

I am following Django official tutorial and have unanswered issue at part 4, https://docs.djangoproject.com/en/1.7/intro/tutorial04/. Here is the exception handling code,

    except (KeyError, Choice.DoesNotExist):          # Redisplay the question voting form.          return render(request, 'polls/detail.html', {              'question': p,              'error_message': "You didn't select a choice.",          })

When I run the server and click on [Vote] without selecting a choice, the page does NOT show me the error message. The same voting page comes back as if [Vote] was not clicked.
I checked my lines and everything seems identical per tutorial.

Any help appreciated!
Thanks

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/69aaa1bb-5371-4aec-ae1f-fb44880e46b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment