zero-to-axum/templates/users.html

21 lines
417 B
HTML

<!DOCTYPE html>
<html lang="en">
<title>Users</title>
<table>
<thead>
<tr>
<th>ID</th>
<th>Email</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<th><a href="/admin/users/{{user.id}}">{{user.id}}</a></th>
<td>{{user.email}}</td>
<td>{{user.status}}</td>
{% endfor %}
<tbody>
</table>
</html>