rDrama/files/templates/stats.html

35 lines
910 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
2023-11-25 19:47:38 +00:00
{% block pagetitle %}Statistics{% endblock %}
2022-05-04 23:09:46 +00:00
{% block content %}
2024-01-23 12:20:51 +00:00
<h3>Weekly Chart</h3>
2024-01-23 12:40:29 +00:00
<a href="/weekly_chart.webp" rel="noopener" target="_blank">
2024-01-23 12:20:51 +00:00
<img alt="Weekly Chart" class="img" src="/weekly_chart.webp">
</a>
<h3>Daily Chart</h3>
2024-01-23 12:40:29 +00:00
<a href="/daily_chart.webp" rel="noopener" target="_blank">
2024-01-23 12:20:51 +00:00
<img alt="Daily Chart" class="img" src="/daily_chart.webp">
</a>
2024-01-23 12:40:29 +00:00
<div class="overflow-x-auto mt-4">
2023-10-29 12:51:00 +00:00
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th class="disable-sort-click">Statistic</th>
<th class="disable-sort-click">Value</th>
</tr>
</thead>
{% for key, value in data.items() %}
<tr>
<td>{{key}}</td>
{% if key == 'time' -%}
<td data-time="{{value}}"></td>
{% else -%}
<td>{{value}}</td>
{%- endif %}
</tr>
{% endfor %}
</table>
</div>
{% endblock %}