rDrama/files/templates/stats.html

19 lines
393 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
2022-11-19 22:20:38 +00:00
{% block pagetitle %}{{SITE_NAME}}{% endblock %}
2022-05-04 23:09:46 +00:00
{% block content %}
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
2022-05-04 23:09:46 +00:00
<thead class="bg-primary text-white">
<tr>
<th>Statistic</th>
<th>Value</th>
</tr>
</thead>
{% for entry in data %}
<tr>
<td>{{entry}}</td>
<td>{{data[entry]}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}