summaryrefslogtreecommitdiff
path: root/slot/urls.py
blob: 1ca18ba85f21c2611b7130bb6fd9f689b10597cf (plain)
1
2
3
4
5
6
7
8
9
10
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'),
]