2023-06-08 11:12:44 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<link rel="stylesheet" href="/css/index.css">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<header class="page-header">
|
|
|
|
<img src="/tildes-statistics.png" alt="Tildes Statistics Logo">
|
|
|
|
<h1>{{ group_name }} Statistics</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main class="page-main">
|
|
|
|
<h2>General</h2>
|
|
|
|
|
2023-06-09 10:53:37 +00:00
|
|
|
{% if let Some(description) = group_description %}
|
|
|
|
<blockquote>{{ description }}</blockquote>
|
|
|
|
{% endif %}
|
|
|
|
|
2023-06-08 11:12:44 +00:00
|
|
|
<img class="chart" src="/charts/user-count/{{ group_name }}.svg"
|
|
|
|
alt="{{ group_name }} User Count Chart">
|
2023-06-14 10:51:10 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
See also the
|
|
|
|
<a href="/charts-untruncated/user-count/{{ group_name }}.svg">untruncated version</a>.
|
|
|
|
</p>
|
2023-06-08 11:12:44 +00:00
|
|
|
</main>
|
|
|
|
{% endblock %}
|