]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/stasy-stats-cpu-flags.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / www / templates / stasy-stats-cpu-flags.html
1 {% extends "stasy-base-1.html" %}
2
3 {% block title %}{{ _("CPU flags") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("Processor flags") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span12">
12 {% if lang == "de" %}
13 <p>
14 Diese Seite untersucht CPUs und ihre Funktionalitäten.
15 Anhand dieser Graphen können die Entwickler einige Entscheidungen
16 über die Betriebssystemkonfiguration treffen.
17 </p>
18 {% else %}
19 <p>
20 On this page we will examine which CPUs provide a specific feature.
21 These charts will help the IPFire developers to make decisions about
22 the operating system configuration.
23 </p>
24 {% end %}
25 </div>
26 </div>
27
28 <div class="row">
29 <div class="span12">
30 <h2>{{ _("CPUs that support 64 bits") }}</h2>
31 {% if lang == "de" %}
32 <p>
33 Wieviele Prozessoren unterstützen die 64-Bit-Architektur?
34 </p>
35 {% else %}
36 <p>
37 How many CPUs support the 64-bit architecture?
38 </p>
39 {% end %}
40 {{ modules.StasyTable(cpus_lm, sortby="percentage") }}
41 </div>
42 </div>
43
44 <div class="row">
45 <div class="span12">
46 <h2>{{ _("CPUs with PAE") }}</h2>
47 {% if lang == "de" %}
48 <p>
49 Diese Grafik zeigt uns wieviele Prozessoren das PAE-Flag unterstützen.
50 </p>
51 {% else %}
52 <p>
53 This chart shows us which CPUs have got the PAE flag.
54 </p>
55 {% end %}
56 {{ modules.StasyTable(cpus_pae, sortby="percentage") }}
57 </div>
58 </div>
59
60 <div class="row">
61 <div class="span12">
62 <h2>{{ _("CPUs that support virtualization") }}</h2>
63 {% if lang == "de" %}
64 <p>
65 Für zukünftige Planungen ist es nötig zu wissen, ob genug
66 Hardware mit Virtualisierungsunterstützung vorhanden ist
67 (Intels VT-x and AMD-V).
68 </p>
69 {% else %}
70 <p>
71 For future planning it is important to know if there is enough hardware
72 support for virtualization like VT-x and AMD-V.
73 </p>
74 {% end %}
75 {{ modules.StasyTable(cpus_virt, sortby="percentage") }}
76 </div>
77 </div>
78 {% end block %}