WebHost: add a /stats page

This commit is contained in:
Fabian Dill
2022-04-08 15:52:49 +02:00
committed by KonoTyran
parent 8bb566a250
commit dae0e233b8
5 changed files with 95 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{% extends 'pageWrapper.html' %}
{% block head %}
<title>Site Map</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
{{ css_resources|indent(4)|safe }}
{{ js_resources|indent(4)|safe }}
{{ chart_data|indent(4)|safe }}
{% endblock %}
{% block body %}
{% include 'header/grassFlowersHeader.html' %}
<div id="stats" class="markdown">
<h1>Stats</h1>
{% for chart in charts %}
{{ chart|indent(12)|safe }}
{% endfor %}
</div>
{% endblock %}