1
0

vault backup: 2025-12-21 20:21:58
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m30s

This commit is contained in:
2025-12-21 20:21:58 +01:00
parent ec61b89af6
commit 2ec904d899
132 changed files with 1283 additions and 233 deletions

11
quiz/quiz/urls.py Normal file
View File

@@ -0,0 +1,11 @@
from django.urls import path
from .views import index, get_next_question, submit_answer, stats
urlpatterns = [
path('', index, name='index'),
path('next/', get_next_question, name='next_question'),
path('submit/', submit_answer, name='submit_answer'),
path('stats/', stats, name='stats'),
]