zulip/templates/zerver/realm_summary_table.html

51 lines
1.1 KiB
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>Bots</th>
<th>Hours</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>
{# Bots #}
<td class="number">
{{ row.bot_count }}
</td>
{# Hours #}
<td class="number">
{{ row.hours }}
</td>
</tr>
{% endfor %}
</tbody>
</table>