Polls tutorial

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

You have at least five different issues with your url specifications.

You need to compare your polls/urls.py file carefully to the tutorial.

Also, when you’re posting chunks of code here, enclose all the code between lines of three backtick - ` characters. This means you’ll have a line of ```, then the code, then another line of ```. This allows you to post the code as it appears in your file and maintain the proper formatting.

Fixed it,
It has helped, thanks a lot