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
+2
View File
@@ -1,5 +1,6 @@
from django.urls import include, path
from containers.views.client_views import ClientContainersListView
from containers.views.common import ContainerDetails
from containers.views.employee_views import ContainersListView, ReportContainersUnpaidListView
from containers.views.barrier_views import ContainerReceiveView, ContainerExpedition, ContainerSearchView, \
@@ -11,6 +12,7 @@ urlpatterns = [
path('container-search/', ContainerSearchView.as_view(), name='barrier_photos'),
# path('search/', ContainerSearchView.as_view(), name='container_search'),
path('employee/', ContainersListView.as_view(), name='employee_containers'),
path('client/', ClientContainersListView.as_view(), name='client_containers'),
path('not-paid', ReportContainersUnpaidListView.as_view(), name='not_paid'),
path('barrier/receive/', ContainerReceiveView.as_view(), name='container_receive'),
path('barrier/expedition/', ContainerExpedition.as_view(), name='container_expedition'),