blob: 98cf65c5edcd68f5c8212a43222a9029a2629fbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<h3>{{lang_hdds}}</h3>
<div class="row">
{{#hdds}}
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
{{dev}}
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<table class="table table-condensed table-striped table-responsive">
<tr>
<th>{{lang_partName}}</th>
<th class="text-right">{{lang_partSize}}</th>
<th>{{lang_partType}}</th>
</tr>
{{#partitions}}
<tr id="{{id}}">
<td>{{name}}</td>
<td class="text-right">{{size}} GiB</td>
<td>{{type}}</td>
</tr>
{{/partitions}}
</table>
<div class="slx-bold">{{lang_total}}: {{size}} GiB</div>
</div>
<div class="col-sm-6">
<canvas id="{{devid}}-chart" style="width:100%;height:250px"></canvas>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
var data = {{{json}}};
var sel = false;
new Chart(document.getElementById('{{devid}}-chart').getContext('2d')).Pie(data, {
animation: false,
tooltipTemplate: "<%if (label){%><%=label%><%}%>",
customTooltips: function(tooltip) {
if (!tooltip) {
if (sel !== false) sel.removeClass('info');
sel = false;
return;
}
sel = $('#' + tooltip.text);
sel.addClass('info');
}
});
}, false);
</script>
</div>
</div>
</div>
</div>
</div>
{{/hdds}}
</div>
|