2013-09-26 21:29:29 +02:00
|
|
|
<h2 style="text-align: center;">{{ num_active_sites }} active sites</h2>
|
2013-09-26 20:46:35 +02:00
|
|
|
|
2013-09-26 21:29:29 +02:00
|
|
|
<table class="table summary-table sortable table-striped table-bordered">
|
2013-09-26 16:46:30 +02:00
|
|
|
|
|
|
|
<thead class="activity_head">
|
2017-06-05 22:47:51 +02:00
|
|
|
<tr>
|
|
|
|
<th>Realm</th>
|
|
|
|
<th>Active users</th>
|
|
|
|
<th>At-risk users</th>
|
|
|
|
<th>Total users</th>
|
|
|
|
<th>Bots</th>
|
|
|
|
<th>Hours per user</th>
|
|
|
|
<th>Hours</th>
|
|
|
|
<th></th>
|
|
|
|
<th colspan=8>Messages sent</th>
|
|
|
|
</tr>
|
2013-09-26 16:46:30 +02:00
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
2017-06-05 22:47:51 +02:00
|
|
|
{% for row in rows %}
|
2013-09-26 16:46:30 +02:00
|
|
|
<tr>
|
|
|
|
|
2017-01-08 19:42:32 +01:00
|
|
|
{# Realm #}
|
2013-09-26 16:46:30 +02:00
|
|
|
<td>
|
2017-01-08 19:42:32 +01:00
|
|
|
{{ row.string_id }}
|
2013-09-26 16:46:30 +02:00
|
|
|
</td>
|
|
|
|
|
2013-09-26 22:18:16 +02:00
|
|
|
{# Active users #}
|
2013-09-26 16:46:30 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.active_user_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-11-14 19:50:32 +01:00
|
|
|
{# At risk users #}
|
|
|
|
<td class="number">
|
|
|
|
{{ row.at_risk_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-09-26 22:18:16 +02:00
|
|
|
{# Total users #}
|
2013-09-26 21:39:46 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.user_profile_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:32:30 +02:00
|
|
|
{# Bots #}
|
|
|
|
<td class="number">
|
|
|
|
{{ row.bot_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:44:42 +02:00
|
|
|
{# Hours per user #}
|
|
|
|
<td class="number">
|
2016-04-21 08:48:33 +02:00
|
|
|
{% if row.hours_per_user %}
|
2013-10-11 21:44:42 +02:00
|
|
|
{{ row.hours_per_user }}
|
2016-04-21 08:48:33 +02:00
|
|
|
{% endif %}
|
2013-10-11 21:44:42 +02:00
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:22:16 +02:00
|
|
|
{# Hours #}
|
2013-10-03 05:18:23 +02:00
|
|
|
<td class="number">
|
2013-10-11 21:22:16 +02:00
|
|
|
{{ row.hours }}
|
2013-10-03 05:18:23 +02:00
|
|
|
</td>
|
|
|
|
|
2013-12-18 22:50:47 +01:00
|
|
|
<td> </td>
|
|
|
|
|
2013-12-18 21:13:47 +01:00
|
|
|
{# Messages sent #}
|
2013-12-18 22:26:32 +01:00
|
|
|
{% if row.history %}
|
2017-06-05 22:47:51 +02:00
|
|
|
{{ row.history|safe }}
|
2013-12-18 22:26:32 +01:00
|
|
|
{% else %}
|
2017-06-05 22:47:51 +02:00
|
|
|
<td colspan=8></td>
|
2013-12-18 22:26:32 +01:00
|
|
|
{% endif %}
|
2013-09-26 16:46:30 +02:00
|
|
|
</tr>
|
2017-06-05 22:47:51 +02:00
|
|
|
{% endfor %}
|
2013-09-26 16:46:30 +02:00
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|