25 lines
440 B
HTML
25 lines
440 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{SITE_NAME}}</title>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<pre></pre>
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
<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 %} |