diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-02-13 21:40:48 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-02-13 21:40:48 -0500 |
| commit | 49f9df9b774b48ceef6f3a99f7a6f4912730dc5f (patch) | |
| tree | 5014e304fa69c0d48ae842780c488440314f0576 /app/dispatch/urls.py | |
| parent | 1d5d056670d9d63d27d6363de4563435d5ff4cdb (diff) | |
| download | dispatch-tracker-49f9df9b774b48ceef6f3a99f7a6f4912730dc5f.tar.gz dispatch-tracker-49f9df9b774b48ceef6f3a99f7a6f4912730dc5f.tar.xz | |
Add logging for Invoices, User Invoice Number, and Identity. Added template to show audit logs as well as a view
Diffstat (limited to 'app/dispatch/urls.py')
| -rw-r--r-- | app/dispatch/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/dispatch/urls.py b/app/dispatch/urls.py index 046acee..1b7d71f 100644 --- a/app/dispatch/urls.py +++ b/app/dispatch/urls.py @@ -49,4 +49,9 @@ urlpatterns = [ url(r'^invoices/delete/(?P<pk>\d+)$', views.InvoiceDelete.as_view(), name='invoice_delete'), url(r'^drivers/view/(?P<pk>\d+)/generate/$', views.InvoiceGenerateForDates, name='invoice_generate'), + # url(r'^audit_log/summary/(?P<pk>\d+)$', views.AuditLog.as_view(), name='driver_summary'), + url(r'^audit_log/summary/$', views.AuditLog.as_view(), name='log_summary'), + # url(r'^audit_log/unusual/$', views.AuditLogUnusual.as_view(), name='log_unusual'), + # url(r'^drivers/activity/summary$', views.DriverActivitySummary.as_view(), name='driver_activity_summary'), + ] |
