1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/templates/table.htm

24 lines
583 B
HTML
Raw Normal View History

2017-10-13 07:39:27 +00:00
<table class="table">
<thead>
<tr>
{% for column in query.keys() %}
<th>
{{ column }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for record in query %}
2017-10-10 21:30:06 +00:00
<tr>
2017-10-13 07:39:27 +00:00
{% for column in record %}
<td>
{% if column %}
{{ column }}
{% endif %}
</td>
2017-10-10 21:30:06 +00:00
{% endfor %}
</tr>
2017-10-13 07:39:27 +00:00
{% endfor %}
</tbody>
</table>