[REMOVE] Unnecessary div

This commit is contained in:
Peter Pfeufer 2023-11-12 21:57:11 +01:00
parent 079dcc5d28
commit a4901802c0
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27

View File

@ -29,8 +29,7 @@
</table> </table>
</div> </div>
<div> <div class="card card-default mt-4">
<div class="card card-default">
<div class="card-header clearfix" role="tablist"> <div class="card-header clearfix" role="tablist">
<ul class="nav nav-pills text-right float-start"> <ul class="nav nav-pills text-right float-start">
<li class="nav-item"> <li class="nav-item">
@ -230,7 +229,6 @@
</div> </div>
</div> </div>
</div> </div>
</div>
{% endif %} {% endif %}
{% endblock %} {% endblock %}
@ -243,7 +241,7 @@
{% endblock %} {% endblock %}
{% block extra_script %} {% block extra_script %}
$(document).ready(function(){ $(document).ready(() => {
$('#table-mains').DataTable({ $('#table-mains').DataTable({
"columnDefs": [ "columnDefs": [
{ "sortable": false, "targets": [1] }, { "sortable": false, "targets": [1] },
@ -251,6 +249,7 @@
"stateSave": true, "stateSave": true,
"stateDuration": 0 "stateDuration": 0
}); });
$('#table-members').DataTable({ $('#table-members').DataTable({
"columnDefs": [ "columnDefs": [
{ "searchable": false, "targets": [0, 2] }, { "searchable": false, "targets": [0, 2] },
@ -260,6 +259,7 @@
"stateSave": true, "stateSave": true,
"stateDuration": 0 "stateDuration": 0
}); });
$('#table-unregistered').DataTable({ $('#table-unregistered').DataTable({
"columnDefs": [ "columnDefs": [
{ "searchable": false, "targets": [0, 2] }, { "searchable": false, "targets": [0, 2] },
@ -269,6 +269,5 @@
"stateSave": true, "stateSave": true,
"stateDuration": 0 "stateDuration": 0
}); });
}); });
{% endblock %} {% endblock %}