<table class="table table-vcenter card-table">
<thead>
<tr>{% for col in cols %}
<th>{{col}}</th>
{% endfor %}
</tr>
</thead>
<tbody>{% for row in rows %}
<tr>{% for cell in row %}
<td>{{ cell | safe }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>