24 lines
561 B
HTML
24 lines
561 B
HTML
{% 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>
|
|
|
|
{% if let Some(description) = group_description %}
|
|
<blockquote>{{ description }}</blockquote>
|
|
{% endif %}
|
|
|
|
<img class="chart" src="/charts/user-count/{{ group_name }}.svg"
|
|
alt="{{ group_name }} User Count Chart">
|
|
</main>
|
|
{% endblock %}
|