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 += ` res += `
<tr> <tr>
<td>${user.username}</td> <td><a href='./${user.username}'>${user.username}</a></td>
<td>${userPerms.join(", ")}</td> <td>${userPerms.join(", ")}</td>
<td><button>Supprimer</button></td> <!--<td><button>Supprimer</button></td>-->
</tr>`; </tr>`;
} }
res += `</table>`; res += `</table>`;

View File

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

View File

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