fixed crud list
fixed payments upload -a
This commit is contained in:
+27
-23
@@ -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 %}
|
||||
Reference in New Issue
Block a user