buttons in table footer
This commit is contained in:
+12
-4
@@ -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'),
|
||||
])
|
||||
)
|
||||
]
|
||||
Reference in New Issue
Block a user