Up through tutorial part 3, the first bit

This commit is contained in:
2024-09-16 06:56:04 -04:00
parent 11d4baf648
commit a5ce30aeeb
7 changed files with 74 additions and 17 deletions
+3
View File
@@ -5,4 +5,7 @@ from . import views
urlpatterns = [
path("", views.index, name="index"),
path("<int:question_id>/", views.detail, name="detail"),
path("<int:question_id>/results/", views.results, name="results"),
path("<int:question_id>/vote/", views.vote, name="vote"),
]