]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - www/templates/static/cluster.html
Initial checkin.
[people/shoehn/ipfire.org.git] / www / templates / static / cluster.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Cluster") }}{% end block %}
4
5 {% block content %}
6 <h3>{{ _("Icecream Cluster Monitoring") }}</h3>
7
8 <p>{{ _("Cluster's CPU load") }}:
9 <span id="loadbar"></span>
10 - {{ _("Job load") }}:
11 <span id="jobbar"></span>
12 </p>
13
14 <table id="nodes">
15 <thead>
16 <tr>
17 <th class="hostname">{{ _("Name") }}</th>
18 <th class="arch">{{ _("Arch") }}</th>
19 <th class="load">{{ _("CPU-Load") }}</th>
20 <th class="jobs">{{ _("Jobs") }}</th>
21 <th class="speed">{{ _("Speed") }}</th>
22 </tr>
23 </thead>
24 <tbody>
25 </tbody>
26 </table>
27
28 <p class="right">&nbsp;<br />{{ _("Number of nodes") }}: <span id="count">-</span></p>
29
30 {% end block %}
31
32 {% block javascript %}
33 <script type="text/javascript" src="{{ static_url("js/jquery.progressbar.js") }}"></script>
34 <script type="text/javascript" src="{{ static_url("js/cluster.js") }}"></script>
35 {% end block %}