attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
8 lines
166 B
HTML
8 lines
166 B
HTML
<table class="table">
|
|
{% for key, value in d.items %}
|
|
<tr>
|
|
<th>{{ key }}</th>
|
|
<td>{{ value }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |