buttons in table footer

This commit is contained in:
2025-07-11 20:26:02 +03:00
parent d72cf0a0b3
commit d986fdf232
46 changed files with 1828 additions and 1720 deletions
+12 -4
View File
@@ -1,9 +1,17 @@
from django.urls import path
from preinfo.views import ClientPreinfoView, check_preinfo, PreinfoSearchView, PreinfoListView
from django.urls import path, include
from preinfo.views.client_views import (ClientPreinfoView, check_preinfo, PreinfoSearchView, ClientPreinfoCreateView, ClientPreinfoUpdateView)
from preinfo.views.employee_views import EmployeePreinfoView
urlpatterns = [
path('client/', ClientPreinfoView.as_view(), name='client_preinfo'),
path('client/', include([
path('', ClientPreinfoView.as_view(), name='client_preinfo'),
path('create/', ClientPreinfoCreateView.as_view(), name='client_preinfo_create'),
path('update/<int:pk>/', ClientPreinfoUpdateView.as_view(), name='client_preinfo_update'),
])),
path('check-preinfo/', check_preinfo, name='check_preinfo'),
path('preinfo-search/', PreinfoSearchView.as_view(), name='preinfo_search'),
path('employee_preinfo/', PreinfoListView.as_view(), name='employee_preinfo'),
path('employee/', include([
path('', EmployeePreinfoView.as_view(), name='employee_preinfo'),
])
)
]