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
|
|
|
|
2017-11-27 20:52:25 +01:00
|
|
|
<ul>
|
2017-12-01 22:59:04 +01:00
|
|
|
<li><strong>active (site)</strong> - has ≥5 DAUs</li>
|
|
|
|
<li>sites are listed if ≥1 users active in last 2 weeks</li>
|
2017-11-27 20:52:25 +01:00
|
|
|
<li><strong>user</strong> - registered user, not deactivated, not a bot</li>
|
|
|
|
<li><strong>active (user)</strong> - sent a message, or advanced the pointer (reading messages doesn't count unless advances the pointer)</li>
|
|
|
|
<li><strong>DAU</strong> (Daily Active Users) - users active in last 24hr</li>
|
|
|
|
<li><strong>WAU</strong> (Weekly Active Users) - users active in last 7 * 24hr</li>
|
|
|
|
<li><strong>DAT</strong> (Daily Active Time) - total user-activity time in last 24hr</li>
|
|
|
|
<li><strong>Human message</strong> - message sent by non-bot user, and not with known-bot client</li>
|
|
|
|
</ul>
|
|
|
|
|
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>
|
2017-11-29 07:31:17 +01:00
|
|
|
<th>Created</th>
|
2017-11-27 20:52:25 +01:00
|
|
|
<th>DAU</th>
|
2017-11-27 21:03:15 +01:00
|
|
|
<th>WAU</th>
|
2017-06-05 22:47:51 +02:00
|
|
|
<th>Total users</th>
|
|
|
|
<th>Bots</th>
|
2017-11-27 20:52:25 +01:00
|
|
|
<th>DAT/DAU (hr)</th>
|
|
|
|
<th>DAT (hr)</th>
|
2017-06-05 22:47:51 +02:00
|
|
|
<th></th>
|
2017-12-01 06:04:15 +01:00
|
|
|
<th colspan=8>Human messages sent, last 8 UTC days (today-so-far first)</th>
|
2017-06-05 22:47:51 +02:00
|
|
|
</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>
|
|
|
|
|
|
|
|
<td>
|
2017-01-08 19:42:32 +01:00
|
|
|
{{ row.string_id }}
|
2013-09-26 16:46:30 +02:00
|
|
|
</td>
|
|
|
|
|
2017-11-29 07:50:25 +01:00
|
|
|
<td {% if row.is_new %}
|
|
|
|
class="good" {% else %}
|
|
|
|
class="neutral" {% endif %} >
|
|
|
|
{{ row.date_created_day }}
|
2017-11-29 07:31:17 +01:00
|
|
|
</td>
|
|
|
|
|
2013-09-26 16:46:30 +02:00
|
|
|
<td class="number">
|
2017-11-27 21:03:15 +01:00
|
|
|
{{ row.dau_count }}
|
2013-09-26 16:46:30 +02:00
|
|
|
</td>
|
|
|
|
|
2013-11-14 19:50:32 +01:00
|
|
|
<td class="number">
|
2017-11-27 21:03:15 +01:00
|
|
|
{{ row.wau_count }}
|
2013-11-14 19:50:32 +01:00
|
|
|
</td>
|
|
|
|
|
2013-09-26 21:39:46 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.user_profile_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:32:30 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.bot_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:44:42 +02:00
|
|
|
<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-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 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>
|