28 lines
553 B
HTML
28 lines
553 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<body>
|
|
<h1>User List</h1>
|
|
<ul id="userList"></ul>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Email</th>
|
|
<th>Created At</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{ user.id|escape }}</td>
|
|
<td>{{ user.email|escape }}</td>
|
|
<td>{{ user.created_at|escape }}</td>
|
|
<td><a href="/web/admin/users/{{ user.id }}" class="btn">Go</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<script></script>
|
|
</body>
|
|
</html>
|