]> git.ipfire.org Git - ipfire.org.git/blobdiff - www/templates/stasy-stats-cpus.html
Move everything to the root of the repository.
[ipfire.org.git] / www / templates / stasy-stats-cpus.html
diff --git a/www/templates/stasy-stats-cpus.html b/www/templates/stasy-stats-cpus.html
deleted file mode 100644 (file)
index d213634..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-{% extends "stasy-base-1.html" %}
-
-{% block title %}{{ _("Processors") }}{% end block %}
-
-{% block body %}
-       <div class="page-header">
-               <h1>{{ _("Hardware: CPUs") }}</h1>
-       </div>
-
-       <div class="row">
-               <div class="span12">
-                       <a href="/stats/cpuflags">{{ _("See statistics about common CPU flags") }}</a>
-                       <hr>
-               </div>
-       </div>
-
-       <div class="row">
-               <div class="span12">
-                       <h2>{{ _("Vendors") }}</h2>
-                       {% if lang == "de" %}
-                               <p>
-                                       Eine Aufstellung über den beliebtesten Prozessor-Hersteller:
-                               </p>
-                       {% else %}
-                               <p>
-                                       This chart shows us which vendors is the most favorite for the CPUs
-                                       used in IPFire.
-                               </p>
-                       {% end %}
-                       {{ modules.StasyTable(cpu_vendors, sortby="percentage") }}
-               </div>
-       </div>
-
-       <div class="row">
-               <div class="span12">
-                       <h2>{{ _("Speed") }}</h2>
-                       <p>
-                               {{ _("The average speed of all systems in the database is: <strong>%.2f MHz</strong>.") % average_speed }}
-                               <br>
-                               {{ _("All together, there are <strong>%s bogomips</strong> out there.") % locale.friendly_number(bogomips) }}
-                       </p>
-                       {{ modules.StasyTable(cpu_speeds) }}
-               </div>
-       </div>
-
-       <div class="row">
-               <div class="span12">
-                       <h2>{{ _("CPU core counter") }}</h2>
-                       <p>
-                               {{ _("See a breakdown of the CPU cores that are installed on the IPFire systems.") }}
-                       </p>
-                       {{ modules.StasyCPUCoreTable(cpu_cores) }}
-               </div>
-       </div>
-{% end block %}