Hi there,
I am now in part 3 of this tutorial but I am getting a page 404.
It says:
The current path, polls/34, didn’t match any of these.
Installed apps:
Contains 'polls.apps.PollsConfig
My site urls:
urlpatterns = [ path('admin/', admin.site.urls), path('polls/', include('polls.urls')
polls/urls:
urlpatterns = [ path('', views.index, name='index'), path('<index:question_id/', views.detail, name = 'detail'), path('<int:question_id>results/', views.results, name = 'results'), path('<int:question_id>/vote', views.vote, name = 'vote')
Waiting for your response!
Thanks in advance