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
+9 -7
View File
@@ -1,12 +1,14 @@
from django.urls import path, include
from common import views
from common.views.barrier_views import BarrierDashboardView
from common.views.employee_views import EmployeeDashboardView
from common.views.client_views import ClientDashboardView
from common.views.shared_views import IndexView, DashboardRedirectView
urlpatterns = [
path('', views.IndexView.as_view(), name='index'),
path('', IndexView.as_view(), name='index'),
path('dashboard/', include([
path('', views.DashboardRedirectView.as_view(), name='dashboard'),
path('client/', views.ClientDashboardView.as_view(), name='client_dashboard'),
path('barrier/', views.BarrierDashboardView.as_view(), name='barrier_dashboard'),
path('employee/', views.EmployeeDashboardView.as_view(), name='employee_dashboard'),
path('', DashboardRedirectView.as_view(), name='dashboard'),
path('client/', ClientDashboardView.as_view(), name='client_dashboard'),
path('barrier/', BarrierDashboardView.as_view(), name='barrier_dashboard'),
path('employee/', EmployeeDashboardView.as_view(), name='employee_dashboard'),
]))
]