aboutsummaryrefslogblamecommitdiffstats
path: root/ctrack/caf/urls.py
blob: 19cbf0f4d59f413151110d10f8b4320bc1e54c1c (plain) (tree)
1
2
3
4
5
6
7
8
9
                            
                                                    
 
                                                                                                   



                
                                                      
                                                                                                   
                                                                                           
                                                     
 
from django.urls import path
from django.views.decorators.cache import cache_page

from ctrack.caf.views import ListCAF, ListApplicableSystem, caf_detail_view, ApplicableSystemDetail

app_name = "caf"

urlpatterns = [
    path("", view=ListCAF.as_view(), name="caf_list"),
    path("applicablesystems", cache_page(60 * 60)(ListApplicableSystem.as_view()), name="es_list"),
    path("applicablesystem/<int:pk>", ApplicableSystemDetail.as_view(), name="ass_detail"),
    path("<int:pk>",  caf_detail_view, name="detail")
]