23 lines
598 B
HTML
23 lines
598 B
HTML
{% extends "authorized.html" %}
|
|
{% block title %}User Administration{% endblock %}
|
|
{% block center %}
|
|
<h1>Users</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">ID</th>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td><a href="/users/{{ user.id }}">{{ user.id }}</a></td>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ user.email }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock center %} |