2013-10-22 17:11:54 +02:00
|
|
|
<h3>{{ data.title }}</h3>
|
|
|
|
|
2013-11-02 12:56:18 +01:00
|
|
|
{{ data.rows|length}} rows
|
2023-07-24 11:58:42 +02:00
|
|
|
<table class="table sortable table-striped table-bordered analytics_table">
|
2013-10-22 17:11:54 +02:00
|
|
|
|
|
|
|
<thead class="activity_head">
|
|
|
|
<tr>
|
2017-06-05 22:46:51 +02:00
|
|
|
{% for col in data.cols %}
|
2013-10-22 17:11:54 +02:00
|
|
|
<th>{{ col }}</th>
|
2017-06-05 22:46:51 +02:00
|
|
|
{% endfor %}
|
2013-10-22 17:11:54 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for row in data.rows %}
|
2017-06-05 22:46:51 +02:00
|
|
|
<tr {% if row.row_class %}class="{{ row.row_class }}"{% endif %}>
|
|
|
|
{% for field in row.cells %}
|
|
|
|
<td sortable>{{ field }}</td>
|
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
2013-10-22 17:11:54 +02:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|