diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-07 17:11:21 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-07 17:11:21 +0000 |
commit | 93bc9d8e6386b8884863d27bef21d92eb60766d6 (patch) | |
tree | 54a5f8bbc43888568c846b8634a5f94794dcc7e1 /ctrack/caf/urls.py | |
parent | 60ec91d03fc6a5b9a5f650bfc3f8959473597bdd (diff) |
continued to work on create CAF form - including help_text to create parent object
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/urls.py | 5 |
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"), ] |