]> git.ipfire.org Git - ipfire.org.git/blob - templates/fireinfo/stats-admin.html
.gitignore: Add .vscode
[ipfire.org.git] / templates / fireinfo / stats-admin.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Fireinfo") }}{% end block %}
4
5 {% block body %}
6 <h3>{{ _("Statistics") }}</h3>
7
8 <dl class="dl-horizontal">
9 <dt>{{ _("Active profiles") }}</dt>
10 <dd>{{ profiles_with_data }}/{{ profiles_all }}
11 (= {{ "%.2f%%" % (profiles_with_data * 100 / profiles_all) }})
12
13 <dt>{{ _("Archive Size") }}</dt>
14 <dd>{{ archive_size }}</dd>
15
16 <dt>{{ _("Total updates") }}</dt>
17 <dd>{{ total_updates }}</dd>
18 </dl>
19 {% end block %}
20