Django 2.2.
[koed-quiz.git] / koedquiz / urls.py
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.
3 #
4 from django.urls import include, path
5 from django.views.generic import TemplateView
6 from django.contrib import admin
7
8 urlpatterns = [
9     path('', TemplateView.as_view(template_name="quiz/home.html"), name='main_page'),
10
11     path('quiz/', include('quiz.urls')),
12
13     path('admin/', admin.site.urls),
14 ]