summaryrefslogtreecommitdiff
path: root/slot/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'slot/urls.py')
-rw-r--r--slot/urls.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/slot/urls.py b/slot/urls.py
new file mode 100644
index 0000000..1ca18ba
--- /dev/null
+++ b/slot/urls.py
@@ -0,0 +1,11 @@
+from django.conf.urls import url
+
+from . import views
+
+urlpatterns = [
+ url(r'^$', views.index, name='slot_index'),
+ url(r'^new/?$', views.new, name='slot_new'),
+ url(r'^show/(.*)/?$', views.show, name='slot_show'),
+ url(r'^create/?$', views.create, name='slot_create'),
+ url(r'^delete/([0-9]+)/?$', views.delete, name='slot_delete'),
+] \ No newline at end of file