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
Following the same Django tutorial and having the same names, I had to change in mysite/urls.py from:
mysite/urls.py
url(r'^polls/', include('polls.urls')),
to:
url(r'^polls/', include('polls.urls', namespace="polls")),