elTesto/internal/views/templates/users.templ
2025-03-24 05:39:02 -06:00

32 lines
No EOL
819 B
Text

package templates
templ Users(users []map[string]interface{}) {
<!DOCTYPE html>
<html>
<head>
<title>Lista de Usuarios</title>
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<h1>Lista de Usuarios</h1>
<table>
<thead>
<tr>
<th>ID</th>
<th>Usuario</th>
<th>Rol</th>
</tr>
</thead>
<tbody>
for _, user := range users {
<tr>
<td>{ user["id"] }</td>
<td>{ user["username"] }</td>
<td>{ user["role"] }</td>
</tr>
}
</tbody>
</table>
</body>
</html>
}