blob: 3016013d7c919313a2e5b0413df36ef7ea82841e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from django.urls import path
from ctrack.caf.views import CreateCAF, ListCAF, ListApplicableSystem, DetailCAF
app_name = "caf"
urlpatterns = [
path("", view=CreateCAF.as_view(), name="create"),
path("", view=ListCAF.as_view(), name="caf_list"),
path("applicablesystems", view=ListApplicableSystem.as_view(), name="es_list"),
path("<int:pk>", DetailCAF.as_view(), name="detail")
]
|