Repository URL to install this package:
|
Version:
0.0.1 ▾
|
<table>
<thead>
{% for column in header %}
<th>{{ column }}</th>
{% endfor %}
</thead>
<tbody>
{% for row in data %}
<tr>
{% for item in row %}
<td>{{ item }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>