Yesterday I was working on my first app using this tutorial. It\'s a Poll and Choice app. The first page displays the question and when you click on the question it\'s suppose t
I think you missed the namespace:
urlpatterns = patterns('', url(r'^polls/', include('polls.urls', namespace="polls")), )