|
|
@ -1,19 +1,19 @@
|
|
|
|
{{unit "cdmf.unit.device.type.windows.leaflet"}}
|
|
|
|
{{unit "cdmf.unit.device.type.windows.leaflet"}}
|
|
|
|
{{unit "cdmf.unit.lib.qrcode"}}
|
|
|
|
{{unit "cdmf.unit.lib.qrcode"}}
|
|
|
|
{{unit "cdmf.unit.device.type.windows.qr-modal"}}
|
|
|
|
{{unit "cdmf.unit.device.type.windows.qr-modal"}}
|
|
|
|
{{unit "cdmf.unit.device.type.windows.operation-bar"}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{#if deviceFound}}
|
|
|
|
{{#if deviceFound}}
|
|
|
|
{{#if isAuthorized}}
|
|
|
|
{{#if isAuthorized}}
|
|
|
|
|
|
|
|
|
|
|
|
{{#zone "device-details-header"}}
|
|
|
|
{{#zone "device-details-header"}}
|
|
|
|
<h1 class="page-sub-title device-id device-select"
|
|
|
|
<h1 class="page-sub-title device-id device-select"
|
|
|
|
data-deviceid="{{deviceView.deviceIdentifier}}" data-type="{{deviceView.type}}"
|
|
|
|
data-deviceid="{{device.deviceIdentifier}}" data-type="{{device.type}}"
|
|
|
|
data-ownership="{{deviceView.ownership}}">
|
|
|
|
data-ownership="{{device.ownership}}"
|
|
|
|
Device {{deviceView.name}}
|
|
|
|
data-owner="{{device.owner}}">
|
|
|
|
{{#if deviceView.model}}
|
|
|
|
Device {{device.name}}
|
|
|
|
|
|
|
|
{{#if device.model}}
|
|
|
|
<span class="lbl-device">
|
|
|
|
<span class="lbl-device">
|
|
|
|
( {{deviceView.vendor}} {{deviceView.model}} )
|
|
|
|
( {{device.vendor}} {{device.model}} )
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
|
|
|
</h1>
|
|
|
@ -26,83 +26,84 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<table class="table table-responsive table-striped" id="members">
|
|
|
|
<table class="table table-responsive table-striped" id="members">
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
{{#if deviceView.deviceIdentifier}}
|
|
|
|
{{#if device.deviceIdentifier}}
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Device ID</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Device ID</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.deviceIdentifier}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.deviceIdentifier}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.name}}
|
|
|
|
{{#if device.name}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Name</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Name</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.name}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.name}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.vendor}}
|
|
|
|
{{#if device.vendor}}
|
|
|
|
{{#if deviceView.model}}
|
|
|
|
{{#if device.model}}
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Model</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Model</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.vendor}} {{deviceView.model}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.vendor}}
|
|
|
|
|
|
|
|
{{device.model}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.status}}
|
|
|
|
{{#if device.status}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Status</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Status</td>
|
|
|
|
<td style="padding:10px 15px;">
|
|
|
|
<td style="padding:10px 15px;">
|
|
|
|
{{#equal deviceView.status "ACTIVE"}}<span><i
|
|
|
|
{{#equal device.status "ACTIVE"}}<span><i
|
|
|
|
class="fw fw-ok icon-success"></i>Active</span>{{/equal}}
|
|
|
|
class="fw fw-ok icon-success"></i>Active</span>{{/equal}}
|
|
|
|
{{#equal deviceView.status "INACTIVE"}}<span><i
|
|
|
|
{{#equal device.status "INACTIVE"}}<span><i
|
|
|
|
class="fw fw-warning icon-warning"></i>Inactive</span>{{/equal}}
|
|
|
|
class="fw fw-warning icon-warning"></i>Inactive</span>{{/equal}}
|
|
|
|
{{#equal deviceView.status "BLOCKED"}}<span><i
|
|
|
|
{{#equal device.status "BLOCKED"}}<span><i
|
|
|
|
class="fw fw-remove icon-danger"></i>Blocked</span>{{/equal}}
|
|
|
|
class="fw fw-remove icon-danger"></i>Blocked</span>{{/equal}}
|
|
|
|
{{#equal deviceView.status "REMOVED"}}<span><i
|
|
|
|
{{#equal device.status "REMOVED"}}<span><i
|
|
|
|
class="fw fw-delete icon-danger"></i>Removed</span>{{/equal}}
|
|
|
|
class="fw fw-delete icon-danger"></i>Removed</span>{{/equal}}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.owner}}
|
|
|
|
{{#if device.owner}}
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Owner</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Owner</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.owner}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.owner}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.ownership}}
|
|
|
|
{{#if device.ownership}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Ownership</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Ownership</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.ownership}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.ownership}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.imei}}
|
|
|
|
{{#if device.imei}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">IMEI</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">IMEI</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.imei}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.imei}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.udid}}
|
|
|
|
{{#if device.udid}}
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">UDID</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">UDID</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.udid}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.udid}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.osBuildDate}}
|
|
|
|
{{#if device.osBuildDate}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Firmware Build
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Firmware Build
|
|
|
|
Date
|
|
|
|
Date
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.osBuildDate}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.osBuildDate}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.phoneNumber}}
|
|
|
|
{{#if device.phoneNumber}}
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<tr role="row" class="odd">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Phone Number</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Phone Number</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.phoneNumber}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.phoneNumber}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.lastUpdatedTime}}
|
|
|
|
{{#if device.lastUpdatedTime}}
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<tr role="row" class="even">
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Last Update</td>
|
|
|
|
<td class="sorting_1" style="padding:10px 15px; width: 15%;">Last Update</td>
|
|
|
|
<td style="padding:10px 15px;">{{deviceView.lastUpdatedTime}}</td>
|
|
|
|
<td style="padding:10px 15px;">{{device.lastUpdatedTime}}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</tbody>
|
|
|
|
</tbody>
|
|
|
@ -110,47 +111,30 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/zone}}
|
|
|
|
{{/zone}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{#zone "device-opetations"}}
|
|
|
|
{{#zone "device-opetations"}}
|
|
|
|
{{#if deviceView.isNotRemoved}}
|
|
|
|
{{#if device.isNotRemoved}}
|
|
|
|
<div style="background: #11375B; color: #fff; padding: 10px; margin-bottom: 5px">
|
|
|
|
<div style="background: #11375B; color: #fff; padding: 10px; margin-bottom: 5px">
|
|
|
|
Operations
|
|
|
|
Operations
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="add-margin-top-4x">
|
|
|
|
<div class="add-margin-top-4x">
|
|
|
|
{{unit "cdmf.unit.device.operation-bar" device=deviceView backendApiUri=backendApiUri autoCompleteParams=autoCompleteParams}}
|
|
|
|
{{unit "cdmf.unit.device.type.windows.new.operation-bar" device=device
|
|
|
|
|
|
|
|
backendApiUri=backendApiUri autoCompleteParams=autoCompleteParams}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/zone}}
|
|
|
|
{{/zone}}
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{{#zone "device-details-tab-injected"}}
|
|
|
|
|
|
|
|
|
|
|
|
{{#zone "device-detail-properties"}}
|
|
|
|
|
|
|
|
<div class="media tab-responsive">
|
|
|
|
|
|
|
|
<div class="media-left col-xs-1 col-sm-1 col-md-2 col-lg-2 hidden-xs">
|
|
|
|
|
|
|
|
<ul class="list-group nav nav-pills nav-stacked" role="tablist">
|
|
|
|
|
|
|
|
{{#if deviceView.isNotWindows}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item active">
|
|
|
|
|
|
|
|
<a href="#device_details_tab" role="tab" data-toggle="tab"
|
|
|
|
|
|
|
|
aria-controls="device_details_tab">
|
|
|
|
|
|
|
|
<i class="icon fw fw-mobile"></i><span class="hidden-sm">Device Details</span>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if deviceView.isNotWindows}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
|
|
|
|
{{else}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item active">
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
<a href="#policy_compliance_tab" role="tab" data-toggle="tab"
|
|
|
|
<a href="#policy_compliance_tab" role="tab" data-toggle="tab"
|
|
|
|
aria-controls="policy_compliance_tab">
|
|
|
|
aria-controls="policy_compliance_tab">
|
|
|
|
<i class="icon fw fw-policy"></i><span class="hidden-sm">Policy Compliance</span>
|
|
|
|
<i class="icon fw fw-policy"></i><span class="hidden-sm">Policy Compliance</span>
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
|
{{#if deviceView.isNotWindows}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
<a href="#device_location_tab" role="tab" data-toggle="tab"
|
|
|
|
<a href="#device_location_tab" role="tab" data-toggle="tab"
|
|
|
|
data-lat="{{deviceView.location.latitude}}"
|
|
|
|
data-lat="{{device.location.latitude}}"
|
|
|
|
data-long="{{deviceView.location.longitude}}"
|
|
|
|
data-long="{{device.location.longitude}}"
|
|
|
|
aria-controls="device_location_tab">
|
|
|
|
aria-controls="device_location_tab">
|
|
|
|
<i class="icon fw fw-map-location"></i><span
|
|
|
|
<i class="icon fw fw-map-location"></i><span
|
|
|
|
class="hidden-sm">Device Location</span>
|
|
|
|
class="hidden-sm">Device Location</span>
|
|
|
@ -162,22 +146,9 @@
|
|
|
|
<i class="icon fw fw-application"></i><span class="hidden-sm">Installed Applications</span>
|
|
|
|
<i class="icon fw fw-application"></i><span class="hidden-sm">Installed Applications</span>
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
{{/zone}}
|
|
|
|
{{#if deviceView.isNotRemoved}}
|
|
|
|
|
|
|
|
<li role="presentation" class="list-group-item">
|
|
|
|
|
|
|
|
<a href="#event_log_tab" role="tab" data-toggle="tab" aria-controls="event_log_tab">
|
|
|
|
|
|
|
|
<i class="icon fw fw-text"></i><span class="hidden-sm">Operations Log</span>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="media-body add-padding-left-5x remove-padding-xs">
|
|
|
|
|
|
|
|
<div class="panel-group tab-content remove-padding" id="tabs" role="tablist"
|
|
|
|
|
|
|
|
data-status="{{deviceView.isNotRemoved}}" aria-multiselectable="true">
|
|
|
|
|
|
|
|
<div class="arrow-left hidden-xs"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{#if deviceView.isNotWindows}}
|
|
|
|
{{#zone "device-details-tab-contents"}}
|
|
|
|
<div class="panel panel-default" role="tabpanel" id="device_details_tab">
|
|
|
|
<div class="panel panel-default" role="tabpanel" id="device_details_tab">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="device_details">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="device_details">
|
|
|
|
<h4 class="panel-title">
|
|
|
|
<h4 class="panel-title">
|
|
|
@ -195,14 +166,8 @@
|
|
|
|
<div class="panel-body ">
|
|
|
|
<div class="panel-body ">
|
|
|
|
<div class="device-detail-body">
|
|
|
|
<div class="device-detail-body">
|
|
|
|
<!-- device summary -->
|
|
|
|
<!-- device summary -->
|
|
|
|
{{#equal deviceView.type "windows"}}
|
|
|
|
{{#if device.deviceInfoAvailable}}
|
|
|
|
<div class="message message-info">
|
|
|
|
{{#if device.BatteryLevel}}
|
|
|
|
<h4 class="remove-margin"><i class="icon fw fw-info"></i>Not
|
|
|
|
|
|
|
|
available yet</h4>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{/equal}}
|
|
|
|
|
|
|
|
{{#if deviceView.deviceInfoAvailable}}
|
|
|
|
|
|
|
|
{{#if deviceView.BatteryLevel}}
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
@ -211,14 +176,15 @@
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
class="fw fw-battery"></i></div>
|
|
|
|
class="fw fw-battery"></i></div>
|
|
|
|
<div class="tile-stats">
|
|
|
|
<div class="tile-stats">
|
|
|
|
{{deviceView.BatteryLevel.value}} %
|
|
|
|
{{device.BatteryLevel
|
|
|
|
|
|
|
|
.value}} %
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
<!--{{#if deviceView.cpuUsage}}-->
|
|
|
|
<!--{{#if device.cpuUsage}}-->
|
|
|
|
<!--<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">-->
|
|
|
|
<!--<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">-->
|
|
|
|
<!--<div class="col-md-12">-->
|
|
|
|
<!--<div class="col-md-12">-->
|
|
|
|
<!--<div class="wr-stats-board-tile">-->
|
|
|
|
<!--<div class="wr-stats-board-tile">-->
|
|
|
@ -226,14 +192,14 @@
|
|
|
|
<!--<div>-->
|
|
|
|
<!--<div>-->
|
|
|
|
<!--<div class="tile-icon"><i class="fw fw-dashboard"></i></div>-->
|
|
|
|
<!--<div class="tile-icon"><i class="fw fw-dashboard"></i></div>-->
|
|
|
|
<!--<div class="tile-stats">-->
|
|
|
|
<!--<div class="tile-stats">-->
|
|
|
|
<!--{{deviceView.cpuUsage.value}} %-->
|
|
|
|
<!--{{device.cpuUsage.value}} %-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--</div>-->
|
|
|
|
<!--{{/if}}-->
|
|
|
|
<!--{{/if}}-->
|
|
|
|
{{#if deviceView.ramUsage}}
|
|
|
|
{{#if device.ramUsage}}
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
@ -242,14 +208,15 @@
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
class="fw fw-hardware"></i></div>
|
|
|
|
class="fw fw-hardware"></i></div>
|
|
|
|
<div class="tile-stats">
|
|
|
|
<div class="tile-stats">
|
|
|
|
{{deviceView.ramUsage.value}} %
|
|
|
|
{{device.ramUsage
|
|
|
|
|
|
|
|
.value}} %
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.internalMemory}}
|
|
|
|
{{#if device.internalMemory}}
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
@ -259,9 +226,11 @@
|
|
|
|
class="fw fw-hdd"></i>
|
|
|
|
class="fw fw-hdd"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tile-stats">
|
|
|
|
<div class="tile-stats">
|
|
|
|
{{deviceView.internalMemory.usage}} %
|
|
|
|
{{device.internalMemory
|
|
|
|
|
|
|
|
.usage}} %
|
|
|
|
<span class="tile-stats-free">
|
|
|
|
<span class="tile-stats-free">
|
|
|
|
TOTAL OF {{deviceView.internalMemory.total}} GB
|
|
|
|
TOTAL OF {{device.internalMemory
|
|
|
|
|
|
|
|
.total}} GB
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -269,7 +238,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if deviceView.externalMemory}}
|
|
|
|
{{#if device.externalMemory}}
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
|
<div class="wr-stats-board-tile">
|
|
|
@ -278,9 +247,11 @@
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
<div class="tile-icon"><i
|
|
|
|
class="fw fw-usb-drive"></i></div>
|
|
|
|
class="fw fw-usb-drive"></i></div>
|
|
|
|
<div class="tile-stats">
|
|
|
|
<div class="tile-stats">
|
|
|
|
{{deviceView.externalMemory.usage}} %
|
|
|
|
{{device.externalMemory
|
|
|
|
|
|
|
|
.usage}} %
|
|
|
|
<span class="tile-stats-free">
|
|
|
|
<span class="tile-stats-free">
|
|
|
|
TOTAL OF {{deviceView.externalMemory.total}} GB
|
|
|
|
TOTAL OF {{device.externalMemory
|
|
|
|
|
|
|
|
.total}} GB
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -301,8 +272,9 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{/zone}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{#zone "device-view-tab-injected-conents"}}
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
id="policy_compliance_tab">
|
|
|
|
id="policy_compliance_tab">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="policy_compliance">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="policy_compliance">
|
|
|
@ -343,6 +315,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
id="device_location_tab">
|
|
|
|
id="device_location_tab">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="device_location">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="device_location">
|
|
|
@ -359,10 +332,10 @@
|
|
|
|
<div id="collapseThree" class="panel-collapse collapse in" role="tabpanel"
|
|
|
|
<div id="collapseThree" class="panel-collapse collapse in" role="tabpanel"
|
|
|
|
aria-labelledby="device_location">
|
|
|
|
aria-labelledby="device_location">
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="panel-body">
|
|
|
|
{{#if deviceView.location}}
|
|
|
|
{{#if device.location}}
|
|
|
|
<div id="device-location"
|
|
|
|
<div id="device-location"
|
|
|
|
data-lat="{{deviceView.location.latitude}}"
|
|
|
|
data-lat="{{device.location.latitude}}"
|
|
|
|
data-long="{{deviceView.location.longitude}}">
|
|
|
|
data-long="{{device.location.longitude}}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{else}}
|
|
|
|
<div id="map-error" class="message message-warning">
|
|
|
|
<div id="map-error" class="message message-warning">
|
|
|
@ -378,6 +351,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel"
|
|
|
|
id="installed_applications_tab">
|
|
|
|
id="installed_applications_tab">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="installed_applications">
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="installed_applications">
|
|
|
@ -423,63 +397,10 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="panel panel-default visible-xs-block" role="tabpanel" id="event_log_tab">
|
|
|
|
|
|
|
|
<div class="panel-heading visible-xs collapsed" id="event_log">
|
|
|
|
|
|
|
|
<h4 class="panel-title">
|
|
|
|
|
|
|
|
<a role="button" data-toggle="collapse" data-parent="#tabs"
|
|
|
|
|
|
|
|
href="#collapseFive" aria-expanded="true" aria-controls="collapseFive">
|
|
|
|
|
|
|
|
<i class="fw fw-text fw-2x"></i>
|
|
|
|
|
|
|
|
Operations Log
|
|
|
|
|
|
|
|
<i class="caret-updown fw fw-down"></i>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-heading display-none-xs">
|
|
|
|
|
|
|
|
Operations Log
|
|
|
|
|
|
|
|
<span>
|
|
|
|
|
|
|
|
<a href="javascript:void(0);" id="refresh-operations">
|
|
|
|
|
|
|
|
<i class="fw fw-refresh"></i>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="collapseFive" class="panel-collapse collapse in" role="tabpanel"
|
|
|
|
|
|
|
|
aria-labelledby="event_log">
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
|
|
|
<span class="visible-xs add-padding-2x text-right">
|
|
|
|
|
|
|
|
<a href="javascript:void(0);" id="refresh-operations">
|
|
|
|
|
|
|
|
<i class="fw fw-refresh"></i>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<div id="operations-spinner" class="wr-advance-operations-init hidden">
|
|
|
|
|
|
|
|
<i class="fw fw-settings fw-spin fw-2x"></i> Loading Operations Log...
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="operations-log-container">
|
|
|
|
|
|
|
|
<div class="message message-info">
|
|
|
|
|
|
|
|
<h4 class="remove-margin">
|
|
|
|
|
|
|
|
<i class="icon fw fw-info"></i>
|
|
|
|
|
|
|
|
There are no operations, performed yet on this device.
|
|
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table table-striped table-hover table-bordered display data-table"
|
|
|
|
|
|
|
|
id="operations-log-table">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
|
|
<tr class="sort-row">
|
|
|
|
|
|
|
|
<th>Operation Code</th>
|
|
|
|
|
|
|
|
<th>Status</th>
|
|
|
|
|
|
|
|
<th>Request created at</th>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{/zone}}
|
|
|
|
{{/zone}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{else}}
|
|
|
|
<h1 class="page-sub-title">
|
|
|
|
<h1 class="page-sub-title">
|
|
|
@ -500,19 +421,13 @@
|
|
|
|
{{#if isAuthorized}}
|
|
|
|
{{#if isAuthorized}}
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<script id="policy-view" src="{{@unit.publicUri}}/templates/policy-compliance.hbs"
|
|
|
|
<script id="policy-view" src="{{@unit.publicUri}}/templates/policy-compliance.hbs"
|
|
|
|
data-device-id="{{deviceView.deviceIdentifier}}" data-device-type="{{deviceView
|
|
|
|
data-device-id="{{device.deviceIdentifier}}" data-device-type="{{device.type}}"
|
|
|
|
.type}}"
|
|
|
|
|
|
|
|
type="text/x-handlebars-template"></script>
|
|
|
|
type="text/x-handlebars-template"></script>
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<script id="applications-list" src="{{@unit.publicUri}}/templates/applications-list.hbs"
|
|
|
|
<script id="applications-list" src="{{@unit.publicUri}}/templates/applications-list.hbs"
|
|
|
|
data-device-id="{{deviceView.deviceIdentifier}}" data-device-type="{{deviceView
|
|
|
|
data-device-id="{{device.deviceIdentifier}}" data-device-type="{{device.type}}"
|
|
|
|
.type}}"
|
|
|
|
|
|
|
|
type="text/x-handlebars-template"></script>
|
|
|
|
type="text/x-handlebars-template"></script>
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<!--suppress HtmlUnknownTarget -->
|
|
|
|
<script id="operations-log" src="{{@unit.publicUri}}/templates/operations-log.hbs"
|
|
|
|
|
|
|
|
data-device-id="{{deviceView.deviceIdentifier}}" data-device-type="{{deviceView
|
|
|
|
|
|
|
|
.type}}"
|
|
|
|
|
|
|
|
type="text/x-handlebars-template"></script>
|
|
|
|
|
|
|
|
{{js "js/device-detail.js"}}
|
|
|
|
{{js "js/device-detail.js"}}
|
|
|
|
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
|
|
|
|
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true"></script>
|
|
|
|
{{js "js/load-map.js"}}
|
|
|
|
{{js "js/load-map.js"}}
|
|
|
|