blob: 9603db5fe3af61c72216d72f59ed7982fb8a5b16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
from django.urls import path
from ctrack.caf.views import CreateCAF, ListCAF, ListEssentialService
app_name = "caf"
urlpatterns = [
path("", view=CreateCAF.as_view(), name="create"),
path("", view=ListCAF.as_view(), name="caf_list"),
path("essentialservices", view=ListEssentialService.as_view(), name="es_list")
]
|