|
|
|
@ -55,22 +55,33 @@
|
|
|
|
|
<div class="vital-strip">
|
|
|
|
|
{{#if device.deviceInfoAvailable}}
|
|
|
|
|
{{#if device.BatteryLevel}}
|
|
|
|
|
<p><i class="icon fw fw-battery fw-2x"></i> <span>{{device.BatteryLevel.value}}%</span></p>
|
|
|
|
|
<p title="Battery level percentage" data-toggle="tooltip">
|
|
|
|
|
<i class="icon fw fw-battery fw-2x"></i>
|
|
|
|
|
<span>{{device.BatteryLevel.value}}%</span>
|
|
|
|
|
</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if device.ramUsage}}
|
|
|
|
|
<p><i class="icon fw fw-hardware fw-2x fw-rotate-90"></i> <span>{{device.ramUsage.value}}%</span></p>
|
|
|
|
|
<p title="RAM usage percentage" data-toggle="tooltip">
|
|
|
|
|
<i class="icon fw fw-hardware fw-2x fw-rotate-90"></i>
|
|
|
|
|
<span>{{device.ramUsage.value}}%</span>
|
|
|
|
|
</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if device.internalMemory}}
|
|
|
|
|
<p><i class="icon fw fw-hdd fw-2x fw-rotate-90"></i> <span>{{device.internalMemory.usage}}</span>
|
|
|
|
|
<span class="memory-amt">GB/{{device.internalMemory.total}}GB</span></p>
|
|
|
|
|
<p title="Free space / Total available internal storage" data-toggle="tooltip">
|
|
|
|
|
<i class="icon fw fw-hdd fw-2x fw-rotate-90"></i>
|
|
|
|
|
<span>{{device.internalMemory.usage}}</span>
|
|
|
|
|
<span class="memory-amt">GB Free/{{device.internalMemory.total}}GB Total</span>
|
|
|
|
|
</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{#if device.externalMemory}}
|
|
|
|
|
<p><i class="icon fw fw-usb-drive fw-2x"></i> <span>{{device.externalMemory.usage}}</span>
|
|
|
|
|
<span class="memory-amt">GB/{{device.externalMemory.total}}GB</span></p>
|
|
|
|
|
<p title="Free space / Total available external storage" data-toggle="tooltip">
|
|
|
|
|
<i class="icon fw fw-usb-drive fw-2x"></i>
|
|
|
|
|
<span>{{device.externalMemory.usage}}</span>
|
|
|
|
|
<span class="memory-amt">GB Free/{{device.externalMemory.total}}GB Total</span>
|
|
|
|
|
</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
{{else}}
|
|
|
|
|
<p>Battery, RAM and Storage related information are not
|
|
|
|
|
available yet.</p>
|
|
|
|
|
<p>Battery, RAM and Storage related information are not available yet.</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
|
|
|
|
{{/zone}}
|
|
|
|
|