commit unversioned files ;)

This commit is contained in:
2025-07-07 11:43:43 +03:00
parent 844a26a287
commit 3ed72beb6c
12 changed files with 184 additions and 19 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
from django.urls import path
from preinfo.views import ClientPreinfoView, check_preinfo, PreinfoSearchView
from preinfo.views import ClientPreinfoView, check_preinfo, PreinfoSearchView, PreinfoListView
urlpatterns = [
path('client/', ClientPreinfoView.as_view(), name='client_preinfo'),
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'),
]