mirror of https://github.com/zulip/zulip.git
27 lines
690 B
HTML
27 lines
690 B
HTML
<h3>{{ data.title }}</h3>
|
|
|
|
{% if data.title == "Remote servers" %}
|
|
{% include "analytics/remote_activity_key.html" %}
|
|
{% endif %}
|
|
|
|
{{ data.rows|length}} rows
|
|
<table class="table sortable table-striped table-bordered analytics-table">
|
|
|
|
<thead class="activity-head">
|
|
<tr>
|
|
{% for col in data.cols %}
|
|
<th>{{ col }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in data.rows %}
|
|
<tr {% if row.row_class %}class="{{ row.row_class }}"{% endif %}>
|
|
{% for field in row.cells %}
|
|
<td sortable>{{ field }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|