server_flask/templates/users.html
2025-01-31 15:20:08 +01:00

28 lines
639 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste des utilisateurs</title>
</head>
<body>
<h1>Liste des utilisateurs</h1>
<table border="1">
<thead>
<tr>
<th>ID</th>
<th>Nom d'utilisateur</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.id }}</td>
<td>{{ user.username }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>