40 lines
909 B
HTML
40 lines
909 B
HTML
{% extends "page.html" %}
|
|
{% set title = "Server statistics" %}
|
|
{% set subtitle = "Placeholder" %}
|
|
|
|
{% block buttons %}
|
|
xxx
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
{% set locals = namespace() %}
|
|
|
|
{% set locals.total_images = 0 %}
|
|
|
|
<div>
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>year</th>
|
|
<th>month</th>
|
|
<th>count</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in images %}
|
|
<tr>
|
|
<td>{{row[1]}}</td>
|
|
<td>{{row[2]}}</td>
|
|
<td>{{"{:,}".format(row[0])}}{% set locals.total_images = locals.total_images + row[0]|int %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<p>{{ "{:,}".format(locals.total_images) }} Files - {{ tsize | filesizeformat }}</p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|