]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/fireinfo/stats-admin.html
fireinfo: Show total number of updates in the database
[people/shoehn/ipfire.org.git] / templates / fireinfo / stats-admin.html
CommitLineData
140172cf
MT
1{% extends "base.html" %}
2
66862195 3{% block title %}{{ _("Fireinfo") }}{% end block %}
140172cf
MT
4
5{% block body %}
66862195 6 <h3>{{ _("Statistics") }}</h3>
140172cf 7
66862195
MT
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>
de14b297
MT
15
16 <dt>{{ _("Total updates") }}</dt>
17 <dd>{{ total_updates }}</dd>
66862195 18 </dl>
140172cf
MT
19{% end block %}
20