development branch created to preserve working deploy project

This commit is contained in:
2025-08-02 17:37:16 +03:00
parent 5e65ea0f7c
commit e824e87953
659 changed files with 90008 additions and 137 deletions
+3 -1
View File
@@ -4,9 +4,11 @@ from common.views.employee_views import EmployeeDashboardView, EmployeeCompanyLi
EmployeeCompanyUpdateView, EmployeeLineListView, EmployeeLineCreateView, EmployeeLineUpdateView
from common.views.client_views import ClientDashboardView, ClientCompanyListView, ClientCompanyCreateView, \
ClientCompanyUpdateView, ClientLineListView, ClientLineCreateView, ClientLineUpdateView
from common.views.shared_views import IndexView, DashboardRedirectView
from common.views.shared_views import IndexView, DashboardRedirectView, AllowedVehiclesView
urlpatterns = [
path('', IndexView.as_view(), name='index'),
path('allowed-vehicles/', AllowedVehiclesView.as_view(), name='allowed_vehicles'),
path('dashboard/', include([
path('', DashboardRedirectView.as_view(), name='dashboard'),
path('client/', ClientDashboardView.as_view(), name='client_dashboard'),