mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
This commit is contained in:
parent
ce9ae0016b
commit
ab2332d34c
@ -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="Total used /Total available storage" 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="Total used /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 Used/{{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="Total used /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 Used/{{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}}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user