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-12-01 06:28:56 +01:00
|
|
|
<p id="utctime" style="text-align: center;"></p>
|
|
|
|
<p id="localtime" style="text-align: center;"></p>
|
2018-07-06 23:31:53 +02:00
|
|
|
<script>
|
2017-12-01 06:28:56 +01:00
|
|
|
var now = moment('{{ now }}');
|
|
|
|
$('#utctime')[0].innerHTML = moment.utc(now).format('YYYY-MM-DD HH:mm') + 'Z';
|
|
|
|
$('#localtime')[0].innerHTML = '(' + now.format('YYYY-MM-DD HH:mm ZZ') + ')';
|
2018-02-11 08:59:50 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('a.envelope-link').click(function() {
|
|
|
|
var temp = $(document.createElement('input'));
|
|
|
|
$("body").append(temp);
|
|
|
|
temp.val($(this).data("value")).select();
|
|
|
|
document.execCommand("copy");
|
|
|
|
temp.remove();
|
|
|
|
$(this).fadeOut(250);
|
|
|
|
$(this).fadeIn(1000);
|
|
|
|
});
|
|
|
|
});
|
2017-12-01 06:28:56 +01:00
|
|
|
</script>
|
|
|
|
|
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>
|
2018-02-11 08:59:50 +01:00
|
|
|
<li><strong><th><i class="fa fa-envelope"></i></th></strong> - copies realm admin emails to clipboard</li>
|
2017-11-27 20:52:25 +01:00
|
|
|
<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>
|
2018-05-28 00:33:01 +02:00
|
|
|
<li><a href="/stats/installation">Server total /stats style graphs</a></li>
|
2017-11-27 20:52:25 +01:00
|
|
|
</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-12-01 06:09:20 +01:00
|
|
|
<th>Created (green if ≤12wk)</th>
|
2018-04-16 12:36:02 +02:00
|
|
|
<th></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 %}
|
2018-04-05 08:38:46 +02:00
|
|
|
class="good" {% else %}
|
|
|
|
class="neutral" {% endif %} >
|
2017-11-29 07:50:25 +01:00
|
|
|
{{ row.date_created_day }}
|
2017-11-29 07:31:17 +01:00
|
|
|
</td>
|
|
|
|
|
2018-04-16 12:36:02 +02:00
|
|
|
<td>
|
2018-02-11 08:59:50 +01:00
|
|
|
{% if not loop.last %}
|
|
|
|
<a class="envelope-link" data-value="{{ row.realm_admin_email }}">
|
|
|
|
<i class="fa fa-envelope"></i>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2018-04-16 12:36:02 +02:00
|
|
|
{{ row.stats_link }}
|
2018-02-11 08:59:50 +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>
|