aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-02-07 17:11:21 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-02-07 17:11:21 +0000
commit93bc9d8e6386b8884863d27bef21d92eb60766d6 (patch)
tree54a5f8bbc43888568c846b8634a5f94794dcc7e1 /ctrack/caf/urls.py
parent60ec91d03fc6a5b9a5f650bfc3f8959473597bdd (diff)
continued to work on create CAF form - including help_text to create parent object
Diffstat (limited to '')
-rw-r--r--ctrack/caf/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py
index e819ef7..0f42a40 100644
--- a/ctrack/caf/urls.py
+++ b/ctrack/caf/urls.py
@@ -1,9 +1,10 @@
from django.urls import path
-from ctrack.caf.views import CreateCAF
+from ctrack.caf.views import CreateCAF, ListCAF
app_name = "caf"
urlpatterns = [
- path("", view=CreateCAF.as_view(), name="create")
+ path("", view=CreateCAF.as_view(), name="create"),
+ path("", view=ListCAF.as_view(), name="caf_list"),
]