develop templates for consolidated apps benchcoach

attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
This commit is contained in:
2021-12-21 17:16:32 -06:00
parent 95697ef4fe
commit 33c772bd2f
12 changed files with 143 additions and 52 deletions

View File

@@ -0,0 +1,8 @@
<table class="table">
{% for key, value in d.items %}
<tr>
<th>{{ key }}</th>
<td>{{ value }}</td>
</tr>
{% endfor %}
</table>