stub functionality for individual workspaces with projects

This commit is contained in:
dandds
2018-07-26 13:34:46 -04:00
parent 34a1743b7a
commit c594d88804
5 changed files with 126 additions and 16 deletions

View File

@@ -0,0 +1,26 @@
{% extends "base.html.to" %}
{% block 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 %}