tt-server/templates/thingtable.html
jpt 97aeace80a
Some checks failed
Lint / lint (push) Has been cancelled
support view logic on HTML side
2025-05-03 22:22:41 -05:00

21 lines
241 B
HTML

<table>
<thead>
<tr>
{% for col in view.columns %}
<th>{{ col }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
{% for item in row %}
<td>
{{ item }}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>