atst/templates/workspaces.html.to
2018-07-31 10:00:27 -04:00

32 lines
671 B
Plaintext

{% extends "base.html.to" %}
{% block content %}
<div class='col'>
<table>
<thead>
<tr>
<th>Workspace Name</th>
<th>Task Order</th>
<th>Users</th>
</tr>
</thead>
<tbody>
{% for w in workspaces %}
<tr>
<td>
<a class='icon-link icon-link--large' href="/workspaces/{{w['task_order']['number']}}/projects">{{ w['name'] }}</a><br>
</td>
<td>
#{{ w['task_order']['number'] }}
</td>
<td>
<span class="label">{{ w['user_count'] }}</span><span class='h6'>Users</span>
</td>
</tr>
{% end %}
</tbody>
</table>
</div>
{% end %}