blob: 37fb96b7af381d363433003ff34374330300bbed (
plain) (
tree)
|
|
from django.urls import path
from ctrack.caf.views import CreateCAF, ListCAF, ListApplicableSystem
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")
]
|