Files
atst/templates/workspace_members.html.to
2018-07-27 10:19:22 -04:00

27 lines
445 B
Plaintext

{% extends "base_workspace.html.to" %}
{% block workspace_content %}
<div class="panel">
<div class='responsive-table-wrapper'>
<table>
<thead>
<tr>
<th scope="col">Name</th>
</tr>
</thead>
<tbody>
{% for m in members %}
<tr>
<td>{{ m['first_name'] }} {{ m['last_name'] }}</td>
</tr>
{% end %}
</tbody>
</table>
</div>
</div>
{% end %}