fixed crud list

fixed payments
upload -a
This commit is contained in:
2025-07-23 11:08:25 +03:00
parent a4a91e0053
commit 4603953458
53 changed files with 1512 additions and 1078 deletions
+27 -23
View File
@@ -1,11 +1,10 @@
{% extends base_template %}
{% load static %}
{% block content %}
{% block filter %}
{% endblock filter %}
{% block filter %}
{% endblock filter %}
<table id="objectTable" class="table" data-selection-mode=
{% block selection %}
@@ -24,6 +23,10 @@
{% block table_data %}
{% endblock table_data %}
</tr>
{% empty %}
<tr>
<td colspan="100%">No data to display</td>
</tr>
{% endfor %}
</tbody>
<tfoot>
@@ -60,25 +63,26 @@
{#footerCell.style.textAlign = 'center';#}
</script>
{% block custom_styles %}
<style>
.selectable-row {
cursor: pointer;
}
.selected-row {
background-color: #e6f3ff;
}
.btn[disabled] {
opacity: 0.5;
cursor: not-allowed;
}
</style>
{% endblock custom_styles %}
{% block extra_js %}
<script src="{% static 'js/crud-list.js' %}"></script>
{% endblock extra_js %}
{% block custom_js %}
{% block custom_styles %}
<style>
.selectable-row {
cursor: pointer;
}
.selected-row {
background-color: #e6f3ff;
}
.btn[disabled] {
opacity: 0.5;
cursor: not-allowed;
}
</style>
{% endblock custom_styles %}
{% block crud_js %}
<script src="{% static 'js/crud-list.js' %}"></script>
{% endblock crud_js %}
{% endblock content %}
{% endblock custom_js %}
{% endblock content %}