mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
24 lines
No EOL
583 B
HTML
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> |