aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-04-04 17:12:02 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-04-04 17:12:02 +0100
commit48ea55b603b44f1a4ad0a7ec9f1aeadfa9015b8b (patch)
treed6cb9b938c118d608f8d1b4e1d1b9ee5f4329f5e /ctrack/caf/urls.py
parent3591b1b87793a2734718390691bdde41af1f8bd0 (diff)
partially completed the CAF score detail table
Diffstat (limited to '')
-rw-r--r--ctrack/caf/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py
index dc228ae..dc5bc44 100644
--- a/ctrack/caf/urls.py
+++ b/ctrack/caf/urls.py
@@ -1,7 +1,7 @@
from django.urls import path
from django.views.decorators.cache import cache_page
-from ctrack.caf.views import CreateCAF, ListCAF, ListApplicableSystem, DetailCAF
+from ctrack.caf.views import CreateCAF, ListCAF, ListApplicableSystem, caf_detail_view
app_name = "caf"
@@ -9,5 +9,5 @@ urlpatterns = [
path("", view=CreateCAF.as_view(), name="create"),
path("", view=ListCAF.as_view(), name="caf_list"),
path("applicablesystems", cache_page(60 * 60)(ListApplicableSystem.as_view()), name="es_list"),
- path("<int:pk>", DetailCAF.as_view(), name="detail")
+ path("<int:pk>", caf_detail_view, name="detail")
]