diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-24 16:05:57 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-24 16:05:57 +0100 |
commit | 2fa3b7134661deb201b1a9a9a907f0a8051640be (patch) | |
tree | 5236b0fde2b8dba57f49dba098df0edec9980741 /ctrack/organisations/urls.py | |
parent | 457cd45a13a4cd73626d70367be1179a070700f3 (diff) |
Contact history for person page added but doesn't filter private events out yet
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/organisations/urls.py b/ctrack/organisations/urls.py index 6001ccd..5a7a580 100644 --- a/ctrack/organisations/urls.py +++ b/ctrack/organisations/urls.py @@ -7,8 +7,7 @@ from ctrack.organisations.views import ( OrganisationListView, PersonListView, essential_service_detail, - person_detail, OrganisationListViewByLeadInspector, oes_list, -) + person_detail, OrganisationListViewByLeadInspector, oes_list, person_contact_history, ) app_name = "organisations" @@ -21,6 +20,7 @@ urlpatterns = [ view=IncidentReportCreateView.as_view(), name="create_incident_report", ), + path("contact-history-for-person/<int:person_id>", view=person_contact_history, name="person_contact_history"), path("", view=OrganisationListView.as_view(), name="list"), path("lead-inspector/<int:id>", view=OrganisationListViewByLeadInspector.as_view(), name="list_by_inspector"), path("create", view=OrganisationCreate.as_view(), name="create"), |