added auto-reload when developing.
Some checks failed
Gitea build & Test. / tests (push) Failing after 21s

This commit is contained in:
WGAVermeer
2026-03-25 17:11:14 +01:00
parent be54afa093
commit c17e3e85f2
9 changed files with 73 additions and 5 deletions

View File

@@ -3,5 +3,12 @@ from django.urls import path
from . import views
urlpatterns = [
# ex: /polls/
path("", views.index, name="index"),
# ex: /polls/5/
path("<int:question_id>/", views.detail, name="detail"),
# ex: /polls/5/results/
path("<int:question_id>/results/", views.results, name="results"),
# ex: /polls/5/vote/
path("<int:question_id>/vote/", views.vote, name="vote"),
]