2025-03-28 15:16:00 +00:00
|
|
|
<!DOCTYPE html>
|
2025-03-28 16:25:43 +00:00
|
|
|
<html lang="es" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml">
|
2025-04-02 18:32:57 +00:00
|
|
|
<head>
|
|
|
|
|
<title>Gestión de Usuarios</title>
|
|
|
|
|
<!-- <link rel="stylesheet" th:href="@{/css/table_style.css}">-->
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h2>Gestión de Usuarios</h2>
|
|
|
|
|
<hr>
|
|
|
|
|
<table border="1px">
|
|
|
|
|
<thead>
|
2025-04-03 14:02:32 +00:00
|
|
|
<tr>
|
|
|
|
|
<th>ID</th>
|
|
|
|
|
<th>NOMBRE</th>
|
|
|
|
|
<th>ROL</th>
|
|
|
|
|
<th>EMAIL</th>
|
|
|
|
|
</tr>
|
2025-04-02 18:32:57 +00:00
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr th:each="user : ${users}">
|
2025-04-03 14:02:32 +00:00
|
|
|
<td th:text="${user.id}"></td>
|
|
|
|
|
<td th:text="${user.nombre}"></td>
|
|
|
|
|
<td th:text="${user.role}"></td>
|
|
|
|
|
<td th:text="${user.mail}"></td>
|
2025-04-02 18:32:57 +00:00
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</body>
|
2025-03-28 15:16:00 +00:00
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|