21 lines
241 B
HTML
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>
|