From 93bc9d8e6386b8884863d27bef21d92eb60766d6 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Fri, 7 Feb 2020 17:11:21 +0000 Subject: continued to work on create CAF form - including help_text to create parent object --- ctrack/caf/urls.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ctrack/caf/urls.py') 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"), ] -- cgit v1.2.3