phonograph/interim-server/templates/rel_rbac.html
2025-07-08 14:37:03 -07:00

48 lines
917 B
HTML

{% extends "base.html" %}
{% block main %}
<h2>Invitations</h2>
<a href="{{ settings.root_path }}/d/{{ base.id.simple() }}/r/{{ pg_class.oid.0 }}/rbac/invite">
Invite Collaborators
</a>
<table>
<thead>
<tr>
<th>Email</th>
<th>Privileges</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for (email, invites) in invites_by_email %}
<tr>
<td>{{ email }}</td>
<td>
<code>{% for invite in invites %}{{ invite.privilege }}{% endfor %}</code>
</td>
<td></td>
</tr>
{% endfor %}
</tbody>
</table>
<h2>Interim Users</h2>
<table>
<thead>
<tr>
<th>Email</th>
<th>User ID</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for (grantee, user) in interim_users %}
<tr>
<td>{{ user.email }}</td>
<td>{{ grantee }}</td>
<td></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}