23 lines
411 B
HTML
23 lines
411 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Email</th>
|
|
<th>User ID</th>
|
|
<th>Roles</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{ user.user.email }}</td>
|
|
<td>{{ role_prefix }}{{ user.user.id.simple() }}</td>
|
|
<td></td>
|
|
<td>...</td>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|