diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-04-19 20:42:01 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-04-19 20:42:01 +0100 |
commit | 899fc0668b8137b41851739a4e1c9e43733985af (patch) | |
tree | 1ad6b1a594fb48b82e20d03580ab8d72239f0279 /ctrack/caf/urls.py | |
parent | 6489d10f65e1d2b6ff50714caec6564ccf632a6f (diff) |
clean up
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/urls.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py index ff1243f..5b64be4 100644 --- a/ctrack/caf/urls.py +++ b/ctrack/caf/urls.py @@ -2,7 +2,7 @@ from django.urls import path from django.views.decorators.cache import cache_page from ctrack.caf.views import ListCAF, ListApplicableSystem, caf_detail_view, ApplicableSystemDetail, \ - ApplicableSystemCreate, ApplicableSystemCreateFromOrg + ApplicableSystemCreateFromOrg app_name = "caf" @@ -11,6 +11,5 @@ urlpatterns = [ path("applicablesystems", cache_page(60 * 60)(ListApplicableSystem.as_view()), name="es_list"), path("applicablesystems/<int:pk>", ApplicableSystemDetail.as_view(), name="ass_detail"), path("applicablesystem/<slug:slug>", ApplicableSystemCreateFromOrg.as_view(), name="create_from_org"), - path("applicablesystem/", ApplicableSystemCreate.as_view(), name="create"), path("<int:pk>", caf_detail_view, name="detail") ] |