Files
benchcoach-django/benchcoach/templates/benchcoach/info-table.html
Tony 33c772bd2f 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)
2021-12-21 17:18:04 -06:00

8 lines
166 B
HTML

<table class="table">
{% for key, value in d.items %}
<tr>
<th>{{ key }}</th>
<td>{{ value }}</td>
</tr>
{% endfor %}
</table>