aboutsummaryrefslogtreecommitdiffstats
path: root/client/urls.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2020-06-18 23:17:08 +0200
committerAndrea Lepori <alepori@student.ethz.ch>2020-06-18 23:17:08 +0200
commitfbb4637a77dc5982b4e694dd31a0aa7d11cec17c (patch)
tree2b277a09a8dacff187211cacfad7da5b5a3dda9b /client/urls.py
downloadscout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.tar.gz
scout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.zip
initial commit
Diffstat (limited to 'client/urls.py')
-rw-r--r--client/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/client/urls.py b/client/urls.py
new file mode 100644
index 0000000..4e9f08e
--- /dev/null
+++ b/client/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+
+from . import views
+
+urlpatterns = [
+ path('', views.index, name='index'),
+ path('approve', views.approve, name='approve')
+]