switch from ownCloud to minIO

buttons in table are buttons and do edit and delete properly
This commit is contained in:
2025-07-29 18:51:09 +03:00
parent 4603953458
commit c1183c22ea
40 changed files with 1263 additions and 241 deletions
+5 -9
View File
@@ -1,4 +1,5 @@
{% extends 'list-crud.html' %}
{% load custom_filters %}
{% load static %}
{% block table_header %}
@@ -13,6 +14,7 @@
<th>Vehicles left</th>
<th>Created on</th>
<th>Created by</th>
<th>Status</th>
{% endblock table_header %}
{% block table_data %}
@@ -22,10 +24,11 @@
<td>{{ object.container_number }}</td>
<td>{{ object.container_count }}</td>
<td>{{ object.containers_left }}</td>
<td>{{ object.vehicles }}</td>
<td>{{ object.vehicles_left }}</td>
<td>{{ object.vehicles|distinct_vehicles }}</td>
<td>{{ object.vehicles_left|distinct_vehicles }}</td>
<td>{{ object.created_on }}</td>
<td>{{ object.created_by.username }}</td>
<td>{{ object.status }}</td>
{% endblock %}
{% block buttons %}
@@ -34,10 +37,3 @@
{# <button id="deleteButton" class="btn btn-danger">Delete Preinfo</button>#}
{% endblock buttons %}
{% block create_modal_header %}
<h2>Create Booking</h2>
{% endblock %}
{% block modal_header %}
<h2>Edit Booking</h2>
{% endblock modal_header %}