]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/stasy-stats-cpus.html
Big update of the fireinfo service.
[ipfire.org.git] / www / templates / stasy-stats-cpus.html
1 {% extends "stasy-base-2.html" %}
2
3 {% block title %}{% end block %}
4
5 {% block content %}
6 <h3>{{ _("CPU vendors") }}</h3>
7 <p>
8 This chart shows us which vendors is the most favorite for the CPUs
9 used in IPFire.
10 </p>
11 {{ modules.StasyTable(cpu_vendors, sortby="percentage") }}
12
13 <h3>{{ _("Speed") }}</h3>
14 <p>
15 The average speed of all systems in the database is:
16 <strong>{{ "%.2f" % average_speed }} MHz</strong>.
17 </p>
18 {{ modules.StasyTable(cpu_speeds) }}
19
20 <p class="links">
21 <a href="cpuflags">See statistics about common CPU flags</a>
22 </p>
23 {% end block %}