zulip/templates/zerver/realm_summary_table.html

45 lines
963 B
HTML
Raw Normal View History

<h2 style="text-align: center;">{{ num_active_sites }} active sites</h2>
<table class="table summary-table sortable table-striped table-bordered">
<thead class="activity_head">
<tr>
<th>Domain</th>
<th>Active users</th>
<th>Total users</th>
<th>Minutes</th>
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
{# Domain #}
<td>
<a href="?realm={{ row.domain }}">
{{ row.domain }}
</a>
</td>
{# Active users #}
<td class="number">
{{ row.active_user_count }}
</td>
{# Total users #}
<td class="number">
{{ row.user_profile_count }}
</td>
{# Minutes #}
<td class="number">
{{ row.minutes }}
</td>
</tr>
{% endfor %}
</tbody>
</table>