All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m30s
12 lines
310 B
Python
12 lines
310 B
Python
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'),
|
|
]
|
|
|