blob: fd6cf1be7935498f1a9e51b673d2ec64ab26368c (
plain) (
tree)
|
|
<h3>{{lang_hdds}}</h3>
<div class="row">
{{#hdds}}
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<b>{{s_ModelFamily}}</b> {{dev}}
</div>
<div class="panel-body">
{{#s_DeviceModel}}
<div>{{lang_modelNo}}: {{s_DeviceModel}}, {{lang_serialNo}}: {{s_SerialNumber}}</div>
{{/s_DeviceModel}}
{{#s_ReallocatedSectorCt}}
<div class="red">{{lang_reallocatedSectors}}: {{s_ReallocatedSectorCt}}</div>
{{/s_ReallocatedSectorCt}}
{{#s_CurrentPendingSector}}
<div class="red">{{lang_pendingSectors}}: {{s_CurrentPendingSector}}</div>
{{/s_CurrentPendingSector}}
{{#s_PowerOnHours}}
<div>{{lang_powerOnTime}}: {{s_PowerOnHours}} {{lang_hours}} ({{PowerOnTime}})</div>
{{/s_PowerOnHours}}
<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 (sel !== false) sel.removeClass('info');
if (!tooltip) {
sel = false;
return;
}
sel = $('#' + tooltip.text);
sel.addClass('info');
}
});
}, false);
</script>
</div>
</div>
</div>
</div>
</div>
{{/hdds}}
</div>
|