aboutsummaryrefslogtreecommitdiffstats
path: root/servo/urls
diff options
context:
space:
mode:
Diffstat (limited to 'servo/urls')
-rw-r--r--servo/urls/checkin.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/servo/urls/checkin.py b/servo/urls/checkin.py
index c35d927..685bef3 100644
--- a/servo/urls/checkin.py
+++ b/servo/urls/checkin.py
@@ -3,16 +3,16 @@
from django.views.generic.base import RedirectView
from django.conf.urls import url
-from servo.views.checkin import *
+from servo.views import checkin
urlpatterns = [
- url(r'^$', index, name='checkin-index'),
+ url(r'^$', checkin.index, name='checkin-index'),
url(r'^sn/$', RedirectView.as_view(url='/checkin/', permanent=True)),
- 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'),
+ url(r'^customer/$', checkin.get_customer, name='checkin-get_customer'),
+ url(r'^reset/$', checkin.reset, name='checkin-reset'),
+ url(r'^status/$', checkin.status, name='checkin-status'),
+ url(r'^checkin/print/(\w+)/$', checkin.print_confirmation, name='checkin-print'),
+ url(r'^thanks/(\w+)/$', checkin.thanks, name='checkin-thanks'),
+ url(r'^terms/$', checkin.terms, name='checkin-terms'),
]