aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-04-17 15:10:45 +0100
committerMR Lemon <matt@matthewlemon>2020-04-17 15:10:45 +0100
commita4be1627b2705bba96d80204043876a3abec6a24 (patch)
tree9df9a91dc1394f0b287776905d30ff86235aa118 /ctrack/caf
parent2c43852e5dcd5437f4544bcd4a647e70b4fb48a0 (diff)
fixed URL..
Diffstat (limited to 'ctrack/caf')
-rw-r--r--ctrack/caf/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py
index 19cbf0f..943fede 100644
--- a/ctrack/caf/urls.py
+++ b/ctrack/caf/urls.py
@@ -8,6 +8,6 @@ app_name = "caf"
urlpatterns = [
path("", view=ListCAF.as_view(), name="caf_list"),
path("applicablesystems", cache_page(60 * 60)(ListApplicableSystem.as_view()), name="es_list"),
- path("applicablesystem/<int:pk>", ApplicableSystemDetail.as_view(), name="ass_detail"),
+ path("applicablesystems/<int:pk>", ApplicableSystemDetail.as_view(), name="ass_detail"),
path("<int:pk>", caf_detail_view, name="detail")
]