21 lines
641 B
HTML
21 lines
641 B
HTML
<table class="full-width">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Role</th>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Email</th>
|
|
<th scope="col">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for role in roles %}
|
|
<tr class="{% cycle 'row1' 'row2' %}">
|
|
<td>{{ role.name }}</td>
|
|
<td>{{ role.person }}</td>
|
|
<td>{{ role.email }}</td>
|
|
<td><a href="{% url 'ietf.secr.roles.views.delete_role' acronym=group.acronym id=role.id %}">Delete</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|