]> git.ipfire.org Git - ipfire.org.git/blame - templates/stasy-stats-cpus.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / stasy-stats-cpus.html
CommitLineData
60024cc8 1{% extends "stasy-base-1.html" %}
372efc19 2
cfd1683f 3{% block title %}{{ _("Processors") }}{% end block %}
372efc19 4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("Hardware: CPUs") }}</h1>
8 </div>
91a446f0 9
60024cc8
MT
10 <div class="row">
11 <div class="span12">
12 <a href="/stats/cpuflags">{{ _("See statistics about common CPU flags") }}</a>
13 <hr>
14 </div>
15 </div>
91a446f0 16
60024cc8
MT
17 <div class="row">
18 <div class="span12">
19 <h2>{{ _("Vendors") }}</h2>
20 {% if lang == "de" %}
21 <p>
22 Eine Aufstellung über den beliebtesten Prozessor-Hersteller:
23 </p>
24 {% else %}
25 <p>
26 This chart shows us which vendors is the most favorite for the CPUs
27 used in IPFire.
28 </p>
29 {% end %}
30 {{ modules.StasyTable(cpu_vendors, sortby="percentage") }}
31 </div>
32 </div>
62c3fa48 33
60024cc8
MT
34 <div class="row">
35 <div class="span12">
36 <h2>{{ _("Speed") }}</h2>
37 <p>
38 {{ _("The average speed of all systems in the database is: <strong>%.2f MHz</strong>.") % average_speed }}
39 <br>
40 {{ _("All together, there are <strong>%s bogomips</strong> out there.") % locale.friendly_number(bogomips) }}
41 </p>
42 {{ modules.StasyTable(cpu_speeds) }}
43 </div>
44 </div>
45
46 <div class="row">
47 <div class="span12">
48 <h2>{{ _("CPU core counter") }}</h2>
49 <p>
50 {{ _("See a breakdown of the CPU cores that are installed on the IPFire systems.") }}
51 </p>
52 {{ modules.StasyCPUCoreTable(cpu_cores) }}
53 </div>
54 </div>
372efc19 55{% end block %}