37 lines
826 B
Plaintext
37 lines
826 B
Plaintext
{% extends "base.html.to" %}
|
|
|
|
{% block content %}
|
|
|
|
<main class="usa-section usa-content usa-width-one-whole">
|
|
|
|
<h1>Workspaces</h1>
|
|
|
|
<table class="usa-table-borderless" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" width="50%">Workspace Name</th>
|
|
<th scope="col" width="30%">Workspace Info</th>
|
|
<th scope="col" width="20%">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for w in workspaces %}
|
|
<tr>
|
|
<th scope="row">
|
|
<a href="">{{ w['name'] }}</a><br>
|
|
Task Order: #{{ w['task_order']['number'] }}
|
|
</th>
|
|
<td>
|
|
<span class="usa-label">{{ w['user_count'] }}</span><br>Users
|
|
</td>
|
|
<td><button class="usa-button-secondary">Launch</button></td>
|
|
</tr>
|
|
{% end %}
|
|
</tbody>
|
|
</table>
|
|
|
|
</main>
|
|
|
|
{% end %}
|
|
|