From d986fdf2326d5a0872834a3b198ed60d4ada541c Mon Sep 17 00:00:00 2001 From: kikimor Date: Fri, 11 Jul 2025 20:26:02 +0300 Subject: [PATCH] buttons in table footer --- .idea/workspace.xml | 136 ++++- DepoT/mixins/LineFiltweFormMixin.py | 15 + DepoT/mixins/crudListViewMixin.py | 21 + accounts/models.py | 11 +- accounts/views.py | 6 +- booking/forms.py | 6 + booking/urls.py | 13 +- booking/views/client_views.py | 64 ++- booking/views/employee_views.py | 10 + common/urls.py | 16 +- common/utils/utils.py | 10 +- common/views/barrier_views.py | 14 + common/views/client_views.py | 13 + common/views/employee_views.py | 23 + common/views/shared_views.py | 32 -- containers/forms.py | 14 +- containers/services.py | 9 +- containers/urls.py | 13 +- containers/views/barrier_views.py | 164 ++++++ containers/views/employee_views.py | 163 +----- populate_database.txt | 12 +- preinfo/forms.py | 8 +- preinfo/urls.py | 16 +- preinfo/views/client_views.py | 125 ++--- preinfo/views/employee_views.py | 32 ++ static/js/crud-list.js | 36 ++ static/styles/base.css | 59 +++ static/styles/dashboard-content.css | 116 ++++ static/styles/forms.css | 219 +++++--- static/styles/sidebar.css | 107 ++++ static/styles/styles.css | 2 +- static/styles/tables.css | 196 +++++++ templates/barrier/barrier-base.html | 19 +- templates/barrier/barrier-dashboard.html | 76 +-- templates/chatgpt/round table.html | 8 +- templates/client-base.html | 211 ++------ templates/client-dashboard-content.html | 415 +++++++++------ templates/client-sidebar.html | 116 ++-- templates/client/booking-edit.html | 26 +- templates/client/booking-list.html | 53 +- templates/client/preinfo-create.html | 26 +- templates/client/preinfo-list.html | 10 + templates/container-expedition.html | 649 +---------------------- templates/container-receive.html | 4 +- templates/employee/preinfo-list.html | 49 +- templates/list-crud.html | 217 +++----- 46 files changed, 1834 insertions(+), 1726 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 83266d6..2d5530a 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,24 +4,53 @@