]> git.ipfire.org Git - ipfire.org.git/blame - templates/fireinfo/stats-cpus.html
Drop German translation
[ipfire.org.git] / templates / fireinfo / stats-cpus.html
CommitLineData
66862195 1{% extends "../base.html" %}
140172cf
MT
2
3{% block title %}{{ _("Processors") }}{% end block %}
4
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("Hardware: CPUs") }}</h1>
8 </div>
9
10 <div class="row">
66862195
MT
11 <div class="col-md-2 col-md-offset-2 ac">
12 <small class="text-muted">({{ _("minimum") }})</small>
13 <h3>{{ "%.0f" % clock_speed_min }} {{ _("MHz") }}</h3>
14 </div>
15 <div class="col-md-4 ac">
16 <small class="text-muted">({{ _("average") }})</small>
17 <h1 class="text-success">{{ "%.0f" % clock_speed_avg }} {{ _("MHz") }}</h1>
18 </div>
19 <div class="col-md-2 ac">
20 <small class="text-muted">({{ _("maximum") }})</small>
21 <h3>{{ "%.0f" % clock_speed_max }} {{ _("MHz") }}</h3>
140172cf
MT
22 </div>
23 </div>
24
66862195
MT
25 <div class="ac">
26 <ul class="list-inline">
27 <li>{{ _("CPU Features") }}:</li>
28 {% for platform in ("x86", "arm") %}
29 <li>
30 <a href="/statistics/processors/{{ platform }}">{{ platform }}</a>
31 </li>
140172cf 32 {% end %}
66862195 33 </ul>
140172cf
MT
34 </div>
35
66862195 36 <hr>
140172cf 37
66862195 38 <h3>{{ _("Vendors") }}</h3>
e52b45b6
MT
39 <p>
40 This chart shows us which vendors is the most favorite for the CPUs
41 used in IPFire.
42 </p>
66862195
MT
43
44 <dl class="dl-horizontal">
45 {% for vendor, percentage in cpu_vendors %}
46 <dt>{{ vendor }}</dt>
47 <dd>{% module ProgressBar(percentage) %}</dd>
48 {% end %}
49 </dl>
50
51 <h3>{{ _("Architectures") }}</h3>
52 <dl class="dl-horizontal">
53 {% for name, percentage in arch_map %}
54 <dt>{{ name }}</dt>
55 <dd>{% module ProgressBar(percentage) %}</dd>
56 {% end %}
57 </dl>
140172cf 58{% end block %}