mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
WebHost: add a /stats page
This commit is contained in:
21
WebHostLib/templates/stats.html
Normal file
21
WebHostLib/templates/stats.html
Normal 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 %}
|
Reference in New Issue
Block a user