2022-10-07 13:27:43 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<link rel="stylesheet" href="/css/index.css">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<header class="page-header">
|
2022-10-09 11:37:37 +00:00
|
|
|
<img src="/tildes-statistics.png" alt="Tildes Statistics Logo">
|
2022-10-07 13:27:43 +00:00
|
|
|
<h1>Tildes Statistics</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main class="page-main">
|
|
|
|
<h2>General</h2>
|
|
|
|
|
|
|
|
<p>
|
2022-10-08 19:47:30 +00:00
|
|
|
There are currently an estimated
|
2022-10-07 13:27:43 +00:00
|
|
|
<span class="underline">{{ user_count }}</span>
|
|
|
|
registered users on Tildes.
|
|
|
|
</p>
|
|
|
|
|
2023-06-07 17:09:44 +00:00
|
|
|
<img class="chart" src="/charts/main-user-count.svg" alt="User Count Chart">
|
2022-10-08 20:11:52 +00:00
|
|
|
|
2023-06-14 10:51:10 +00:00
|
|
|
<p>
|
|
|
|
See also the
|
|
|
|
<a href="/charts-untruncated/main-user-count.svg">untruncated version</a>.
|
|
|
|
</p>
|
|
|
|
|
2023-06-07 19:06:17 +00:00
|
|
|
<details open>
|
|
|
|
<summary>Groups Overview</summary>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Group</th>
|
|
|
|
<th>Subscribers</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{% for group in groups %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2023-06-08 11:12:44 +00:00
|
|
|
<a href="/{{ group.name }}">{{ group.name }}</a>
|
2023-06-07 19:06:17 +00:00
|
|
|
</td>
|
2023-06-24 09:55:57 +00:00
|
|
|
<td>
|
|
|
|
{{ group.subscribers }} <span class="small"
|
|
|
|
title="Percentage of subscribers compared to the highest-subscribed group."
|
|
|
|
>({{ group.subscribers|percentage(user_count) }})</span>
|
|
|
|
</td>
|
2023-06-07 19:06:17 +00:00
|
|
|
<td>
|
|
|
|
{% if let Some(description) = group.description %}
|
|
|
|
{{ description }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</details>
|
2022-10-07 13:27:43 +00:00
|
|
|
</main>
|
|
|
|
{% endblock %}
|