rDrama/files/templates/stats.html

41 lines
1.4 KiB
HTML
Raw Normal View History

2024-02-05 04:18:50 +00:00
{% extends "meta_navbar.html" %}
2023-11-25 19:47:38 +00:00
{% block pagetitle %}Statistics{% endblock %}
2022-05-04 23:09:46 +00:00
{% block content %}
2024-03-06 02:30:26 +00:00
<header id="shop-header" class="container text-center pb-0">
2024-03-07 20:57:27 +00:00
<img class="mt-2 mb-4" width="300" alt="coat of arms" src="{{SITE_FULL_IMAGES}}/i/{{SITE_NAME}}/coat_of_arms.webp?x=8">
2024-01-23 12:20:51 +00:00
2024-04-05 09:10:32 +00:00
{% set today = datetime.datetime.today().strftime('%Y-%m-%d') %}
2024-03-06 02:30:26 +00:00
<h3>Weekly Chart</h3>
2024-04-06 01:46:14 +00:00
<a href="{{SITE_FULL_IMAGES}}/images/weekly_chart.png?x={{today}}" rel="noopener" target="_blank">
<img alt="Weekly Chart" class="img" src="{{SITE_FULL_IMAGES}}/images/weekly_chart.png?x={{today}}" data-nonce="{{g.nonce}}" data-onclick="expandImage()">
2024-03-06 02:30:26 +00:00
</a>
<h3>Daily Chart</h3>
2024-04-06 01:46:14 +00:00
<a href="{{SITE_FULL_IMAGES}}/images/daily_chart.png?x={{today}}" rel="noopener" target="_blank">
<img alt="Daily Chart" class="img" src="{{SITE_FULL_IMAGES}}/images/daily_chart.png?x={{today}}" data-nonce="{{g.nonce}}" data-onclick="expandImage()">
2024-03-06 02:30:26 +00:00
</a>
</header>
2024-01-23 12:20:51 +00:00
2024-01-23 12:40:29 +00:00
<div class="overflow-x-auto mt-4">
<table>
<thead>
2023-10-29 12:51:00 +00:00
<tr>
<th class="disable-sort-click">Statistic</th>
<th class="disable-sort-click">Value</th>
</tr>
</thead>
2024-01-23 14:06:29 +00:00
{% for key, value in stats.items() %}
2023-10-29 12:51:00 +00:00
<tr>
<td>{{key}}</td>
2024-01-23 14:06:29 +00:00
{% if key == 'Time these stats were collected' -%}
2023-10-29 12:51:00 +00:00
<td data-time="{{value}}"></td>
{% else -%}
<td>{{value}}</td>
{%- endif %}
</tr>
{% endfor %}
</table>
</div>
{% endblock %}