1 # This file is part of KOED-Quiz, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.urls import path
9 path('', views.question, name='quiz'),
10 path('q/<slug>/', views.question, name='quiz'),
11 path('r/<slug>/', views.result, name='quiz_result'),