Save new folder

This commit is contained in:
2025-11-09 10:02:18 +01:00
commit 5c733eac6b
21738 changed files with 4477854 additions and 0 deletions

View File

@ -0,0 +1,11 @@
from django.urls import path
from .views import AEListView, BSListView, HSListView, AAListView, COListView,CRListView
urlpatterns = [
path('tickets/bs/', BSListView.as_view(), name='ticket-bs'),
path('tickets/ae/', AEListView.as_view(), name='ticket-ae'),
path('tickets/hs/', HSListView.as_view(), name='ticket-hs'),
path('tickets/aa/', AAListView.as_view(), name='ticket-aa'),
path('tickets/co/', COListView.as_view(), name='ticket-co'),
path('tickets/cr/', CRListView.as_view(), name='ticket-cr')
]