2022-04-08 13:52:49 +00:00
|
|
|
{% extends 'pageWrapper.html' %}
|
|
|
|
|
|
|
|
{% block head %}
|
2022-04-14 03:46:15 +00:00
|
|
|
<title>Archipelago Game Statistics</title>
|
2022-04-08 13:52:49 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
|
2022-04-14 03:46:15 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/stats.css") }}" />
|
2022-04-08 13:52:49 +00:00
|
|
|
{{ 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">
|
2022-04-14 03:46:15 +00:00
|
|
|
<h1>Archipelago Game Statistics</h1>
|
|
|
|
<h5>
|
|
|
|
The data on this page is updated hourly.
|
|
|
|
</h5>
|
2022-04-08 13:52:49 +00:00
|
|
|
|
2022-04-14 03:46:15 +00:00
|
|
|
<div id="charts-wrapper">
|
|
|
|
{% for index in range(chart_count) %}
|
|
|
|
<div class="chart-container">
|
|
|
|
{{ charts[index]|indent(12)|safe }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2022-04-08 13:52:49 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|