rename to workpsace projects

This commit is contained in:
Andrew Croce
2018-07-27 10:18:58 -04:00
parent cd355b0ed7
commit 1de0672910

View File

@@ -0,0 +1,26 @@
{% 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 %}