1
0
mirror of synced 2025-10-28 18:19:17 +00:00

link between servers & groups, clean, bug fix

This commit is contained in:
Valentin PUCCETTI
2023-09-11 16:28:18 +02:00
parent a034396dbe
commit 221a4b24a0
19 changed files with 298 additions and 76 deletions

View File

@@ -9,11 +9,11 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="/static/assets/js/script.min.js"></script>
<script>
function tableSearch() {
function tableSearch(int) {
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById("tableInput");
input = document.getElementById("tableInput" + int);
filter = input.value.toUpperCase();
table = document.getElementById("tableEnabled");
table = document.getElementById("tableEnabled" + int);
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
@@ -27,6 +27,7 @@
}
}
}
</script>
</body>
</html>