Update user display

This commit is contained in:
Ninjdai 2023-12-07 23:55:26 +01:00
parent dd6d7fc552
commit 1cf5b5a089
3 changed files with 4 additions and 2 deletions

View File

@ -34,9 +34,9 @@ function genUserTable(users) {
};
res += `
<tr>
<td>${user.username}</td>
<td><a href='./${user.username}'>${user.username}</a></td>
<td>${userPerms.join(", ")}</td>
<td><button>Supprimer</button></td>
<!--<td><button>Supprimer</button></td>-->
</tr>`;
}
res += `</table>`;

View File

@ -13,5 +13,6 @@
<body>
<NAVBAR>
<USERINFO>
<a href='./'><p>Retour</p></a>
</body>
</html>

View File

@ -13,5 +13,6 @@
<body>
<NAVBAR>
<USERTABLE>
<a href='./'><p>Retour</p></a>
</body>
</html>