]> git.ipfire.org Git - ipfire.org.git/blob - templates/stasy-stats-virtual.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / stasy-stats-virtual.html
1 {% extends "stasy-base-1.html" %}
2
3 {% block title %}{{ _("Virtualization") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("Virtualization support") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span12">
12 {% if lang == "de" %}
13 <p>
14 IPFire läuft hervorragend in virtuellen Umgebungen.
15 </p>
16 <p>
17 Dieser Graph gibt Aufschluss darüber, wieviele Systeme
18 virtuell laufen.
19 </p>
20 {% else %}
21 <p>
22 IPFire is running very well in a virtual environment.
23 </p>
24 <p>
25 See this chart to get a clue about how many machines are running
26 virtually.
27 </p>
28 {% end %}
29 {{ modules.StasyTable(is_virtual, sortby="percentage") }}
30 </div>
31 </div>
32
33 <div class="row">
34 <div class="span12">
35 <h2>{{ _("Hypervisors") }}</h2>
36 {% if lang == "de" %}
37 <p>
38 Diese Systeme werden eingesetzt um IPFire zu virtualisieren:
39 </p>
40 {% else %}
41 <p>
42 This is a list of all hypervisor vendors that IPFire is running on.
43 </p>
44 {% end %}
45 {{ modules.StasyTable(hypervisor_vendors, sortby="percentage") }}
46 </div>
47 </div>
48 {% end block %}