aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/dispatch/urls.py')
-rw-r--r--app/dispatch/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/dispatch/urls.py b/app/dispatch/urls.py
index c7622ff..330dd05 100644
--- a/app/dispatch/urls.py
+++ b/app/dispatch/urls.py
@@ -28,6 +28,7 @@ urlpatterns = [
url(r'^customers/view/(?P<pk>\d+)$', views.CustomerDetail.as_view(), name='customer_detail'),
url(r'^customers/edit/(?P<pk>\d+)$', views.CustomerUpdate.as_view(), name='customer_edit'),
url(r'^customers/delete/(?P<pk>\d+)$', views.CustomerDelete.as_view(), name='customer_delete'),
+ url(r'^customers/download/(?P<pk>\d+)$', views.CustomerDownload, name='customer_download'),
url(r'^loads/$', views.LoadList.as_view(), name='load_list'),
url(r'^loads/new$', views.LoadCreate.as_view(), name='load_new'),