CoUL-document-search / templates /table_template.html
wbrooks's picture
render result to a jinja table
21d4134
Raw
History Blame Contribute Delete
374 Bytes
<table border="1">
<thead>
<tr>
{% for col in columns %}
<th>{{ col }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in data %}
<tr>
{% for col in columns %}
<td>{{ row[col] }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>