aboutsummaryrefslogtreecommitdiffstats
path: root/client/urls.py
blob: d76aa9616704b31319dafb0d06fed7cb7c2c8e51 (plain)
1
2
3
4
5
6
7
8
9
10
from django.urls import path

from . import views

urlpatterns = [
    path('', views.index, name='index'),
    path('create/<int:code>', views.create, name='create'),
    path('edit', views.edit, name='edit'),
    path('about', views.about, name='about'),
]