<h3>{{ data.title }}</h3>
{{ data.rows|length}} rows
<table class="table sortable table-striped table-bordered">
<thead class="activity_head">
<tr>
{% for col in data.cols %}
<th>{{ col }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in data.rows %}
{% for field in row %}
<td sortable>{{ field }}</td>
</tbody>
</table>