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