Files
zulip/templates/analytics/ad_hoc_query.html
Steve Howell f5bb2409ef Create "analytics" app with activity reports.
(imported from commit 6385935c3d7894fe52bcc265faecc30b07629717)
2013-11-06 12:07:32 -05:00

23 lines
519 B
HTML

<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 %}
<tr>
{% for field in row %}
<td sortable>{{ field }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>