<table>
<tr>{% for col in cols %}
<th>{{col}}</th>
{% endfor %}
</tr>
<tbody>{% for row in rows %}
<tr>{% for cell in row %}   
<td>{{cell}}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>