1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/table.htm
2017-10-13 09:39:27 +02:00

24 lines
No EOL
583 B
HTML

<table class="table">
<thead>
<tr>
{% for column in query.keys() %}
<th>
{{ column }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for record in query %}
<tr>
{% for column in record %}
<td>
{% if column %}
{{ column }}
{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>