atst/templates/workspace_projects.html.to
2018-07-27 10:18:58 -04:00

27 lines
419 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 p in projects %}
<tr>
<td>{{ p['name'] }}</td>
</tr>
{% end %}
</tbody>
</table>
</div>
</div>
{% end %}