Works almost

This commit is contained in:
2023-09-28 17:29:30 +02:00
parent 175e13da4f
commit 92546024d8
147 changed files with 31229 additions and 70 deletions

7
static/abac/main.js Normal file
View File

@@ -0,0 +1,7 @@
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('tr[data-url]').forEach(row => {
row.addEventListener('click', function() {
window.location.href = row.dataset.url;
});
});
});

4
static/abac/styles.css Normal file
View File

@@ -0,0 +1,4 @@
tr[data-url]:hover {
cursor: pointer;
background-color: #e8e8e8; /* Or any other color you prefer */
}