aboutsummaryrefslogtreecommitdiffstats
path: root/servo/urls/checkin.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/urls/checkin.py')
-rw-r--r--servo/urls/checkin.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/servo/urls/checkin.py b/servo/urls/checkin.py
new file mode 100644
index 0000000..a05e306
--- /dev/null
+++ b/servo/urls/checkin.py
@@ -0,0 +1,15 @@
+from django.conf.urls import patterns, url
+from servo.views.checkin import *
+
+
+urlpatterns = patterns(
+ '',
+ url(r'^$', index, name='checkin-index'),
+ url(r'^customer/$', get_customer, name='checkin-get_customer'),
+ url(r'^reset/$', reset, name='checkin-reset'),
+ url(r'^status/$', status, name='checkin-status'),
+ url(r'^checkin/print/(\w+)/$', print_confirmation, name='checkin-print'),
+ url(r'^thanks/(\w+)/$', thanks, name='checkin-thanks'),
+ url(r'^terms/$', terms, name='checkin-terms'),
+
+)