working polls app with function-based non-generic views

This commit is contained in:
2025-12-21 18:54:55 -05:00
parent 384b2e7303
commit 72d10ab9d2
17 changed files with 194 additions and 55 deletions

View File

@@ -20,5 +20,5 @@ from django.urls import include, path
urlpatterns = [
path("admin/", admin.site.urls),
path("polls/", include("polls.urls")),
path("polls/", include("apps.polls.urls")),
]