This commit is contained in:
2026-03-20 17:13:38 +01:00
parent 4c84735b75
commit c043ee9a52
1152 changed files with 317560 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
<hr>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
<script src="js/patienten.js"></script>
<script>
$(document).ready( function () {
$('#table_id').DataTable( {
"order": [[ 1, "desc" ]],
language: {
url: '//cdn.datatables.net/plug-ins/1.11.4/i18n/de_de.json'
},
"columnDefs": [
{
"targets": [ 1 ],
"visible": false,
"searchable": false
}
]
});
} );
</script>
<footer class="footer mt-auto py-3 bg-light">
<div class="container">
<span class="text-muted"><p>Created by <a href="https://ctb-it.de" target="_blank">Clemens Creutzburg</a></p></span>
</div>
</footer>
</body>
</html>