]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/admin.html
fireinfo: Show amount of active profiles
[ipfire.org.git] / src / templates / fireinfo / admin.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Admin") }}{% end block %}
4
5 {% block container %}
6 <section>
7 <div class="container">
8 <div class="row">
9 <div class="col col-lg-6 text-center">
10 <h1>{{ "{:,d}".format(total) }}</h1>
11 <h4>{{ _("Total amount of profiles") }}</h4>
12 </div>
13
14 <div class="col col-lg-6 text-center">
15 <h1>{{ "%.2f%%" % (with_data * 100 / total) }}</h1>
16 <h4>{{ _("Reporting back to us") }}</h4>
17 </div>
18 </div>
19 </div>
20 </section>
21 {% end block %}