This commit is contained in:
Kevin Adametz 2024-08-05 11:58:09 +02:00
parent c1c613a4b9
commit 881fc84207
384 changed files with 50679 additions and 990 deletions

View file

@ -9,11 +9,15 @@
<div class="card">
<div class="card-datatable table-responsive py-2">
<div class="table-responsive-track" id="datatables-users-scroll">
<div class="table-responsive-thumb" id="datatables-users-thumb">
</div>
</div>
<div class="card-datatable table-responsive py-2" id="datatables-users-table">
<div class="mr-4 mb-2 text-right">
<a href="{{ route('admin_user_edit', ['new']) }}" class="btn btn-sm btn-primary">Neuen User anlegen</a>
</div>
<table class="datatables-users table table-striped table-bordered">
<table class="datatables-users table table-striped table-bordered" id="datatables-users">
<thead>
<tr>
<th>#</th>
@ -106,6 +110,9 @@
e.preventDefault();
update_modal_data_show(e, $(this));
});
},
drawCallback: function () {
dataTableScrollTrack('#datatables-users');
}
});