diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 16:09:05 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-21 16:09:05 +0100 |
commit | cbddf7c7fad44f62b1cf057158bcf9e53f8e1bb4 (patch) | |
tree | ed3eb1783d7a0a73561a081e23cb5839ecb0bffb /ctrack/organisations/urls.py | |
parent | cadbccdf61525c67107ab0f1b1206f4d5e07861a (diff) |
now have an OES-only organisation page
Diffstat (limited to 'ctrack/organisations/urls.py')
-rw-r--r-- | ctrack/organisations/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ctrack/organisations/urls.py b/ctrack/organisations/urls.py index 33a741c..6001ccd 100644 --- a/ctrack/organisations/urls.py +++ b/ctrack/organisations/urls.py @@ -7,12 +7,13 @@ from ctrack.organisations.views import ( OrganisationListView, PersonListView, essential_service_detail, - person_detail, OrganisationListViewByLeadInspector, + person_detail, OrganisationListViewByLeadInspector, oes_list, ) app_name = "organisations" urlpatterns = [ + path("oes/", oes_list, name="list_oes"), path("people/", view=PersonListView.as_view(), name="people"), path("<slug:slug>/", view=OrganisationDetailView.as_view(), name="detail"), path( |