diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-01-09 00:41:10 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-01-09 00:41:10 -0500 |
| commit | 8bdb452b40e93ad29cca0b98b3d388bfbe5093f4 (patch) | |
| tree | 398a68d2c24596ec31bc939db010c31274afb508 /app/dispatch/urls.py | |
| parent | 88c792763d22050e383af1cc5e2741b8b5993ad6 (diff) | |
| download | dispatch-tracker-8bdb452b40e93ad29cca0b98b3d388bfbe5093f4.tar.gz dispatch-tracker-8bdb452b40e93ad29cca0b98b3d388bfbe5093f4.tar.xz | |
Initial version of paperwork download--still doesn't download lol
Diffstat (limited to 'app/dispatch/urls.py')
| -rw-r--r-- | app/dispatch/urls.py | 1 |
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'), |
