Add polls app with basic views and URL routing

This commit is contained in:
2025-12-10 21:03:51 -05:00
parent 620012392d
commit 384b2e7303
9 changed files with 34 additions and 2 deletions

7
polls/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]