Hi all. I have started following tutorial 1 Writing your first Django app, part 1 | Django documentation | Django and after completing all of the steps accordingly and trying to go to http://localhost:8000/polls/ I get a 404 error. I am sure I have saved the urls.py in polls app, but it seems like django does not see it and does not check for these urls. Could you please tell me what I am doing wrong?
my urls.py:
from django.contrib import admin
from django.urls import include, path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]