]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/statistics/index.html
Use autotools
[people/jschlag/pbs.git] / src / templates / statistics / index.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Statistics") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h2>{{ _("Statistics") }}</h2>
8 </div>
9
10 <p>
11 {{ _("On this page, you will find a lot of information bundled in graphs and figures.") }}
12 {{ _("They give a very quick overview about what is going on in the build service.") }}
13 </p>
14
15 <h3>{{ _("Builds") }}</h3>
16 <ul>
17 <li>
18 {{ _("The average build time is %.1f minutes.") % (jobs_avg_build_time / 60) }}
19 </li>
20 <li>
21 {{ _("There are %(builds_count)s builds containing %(jobs_count_all)s jobs.") % { "builds_count" : builds_count, "jobs_count_all" : jobs_count_all } }}
22 </li>
23 </ul>
24 {% end block %}