Using the URLconf defined in mysite.urls, Django tried these URL patterns, 
in this order:

   1. admin/

The current path, polls/, didn't match any of these.


what is the problem of this?


at ./mysite/mysite/urls.py

I wrote this code.

from django.contrib import admin
from django.urls import include, path

urlpatterns = [
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8ff414e9-c43d-4479-a330-b7a9492ccfd8%40googlegroups.com.

Reply via email to