some changes

This commit is contained in:
Basyrov Rustam
2025-06-03 22:19:57 +03:00
parent 49808d7bc5
commit 8bea592155
3 changed files with 12 additions and 2 deletions

View File

@@ -15,8 +15,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import include, path
urlpatterns = [
path("polls/", include("polls.urls")),
path("admin/", admin.site.urls),
]