phonograph/phono-server/templates/rbac.html

24 lines
411 B
HTML
Raw Normal View History

2025-07-08 14:37:03 -07:00
{% 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 %}