|
|
@@ -102,7 +102,7 @@
|
|
|
</a>
|
|
|
<ul class="dropdown-menu">
|
|
|
<li><a href="" ng-click="showSettings()"><span class="fas fa-fw fa-cog"></span> <span translate>Settings</span></a></li>
|
|
|
- <li><a href="" data-toggle="modal" data-target="#idqr" ng-click="currentDevice=thisDevice()"><span class="fas fa-fw fa-qrcode"></span> <span translate>Show ID</span></a></li>
|
|
|
+ <li><a href="" ng-click="showDeviceIdentification(thisDevice())"><span class="fas fa-fw fa-qrcode"></span> <span translate>Show ID</span></a></li>
|
|
|
<li class="divider" aria-hidden="true"></li>
|
|
|
<li><a href="" ng-click="shutdown()"><span class="fas fa-fw fa-power-off"></span> <span translate>Shutdown</span></a></li>
|
|
|
<li><a href="" ng-click="restart()"><span class="fas fa-fw fa-refresh"></span> <span translate>Restart</span></a></li>
|
|
|
@@ -682,6 +682,14 @@
|
|
|
<th><span class="far fa-fw fa-clock"></span> <span translate>Uptime</span></th>
|
|
|
<td class="text-right">{{system.uptime | duration:"m"}}</td>
|
|
|
</tr>
|
|
|
+ <tr>
|
|
|
+ <th><span class="fas fa-fw fa-qrcode"></span> <span translate>Identification</span></th>
|
|
|
+ <td class="text-right">
|
|
|
+ <span tooltip data-original-title="{{'Click to see full identification string and QR code.' | translate}}">
|
|
|
+ <a href="" ng-click="showDeviceIdentification(thisDevice())">{{deviceShortID(deviceCfg.deviceID)}}</a>
|
|
|
+ </span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
<tr>
|
|
|
<th><span class="fas fa-fw fa-tag"></span> <span translate>Version</span></th>
|
|
|
<td class="text-right">
|
|
|
@@ -806,6 +814,14 @@
|
|
|
<th><span class="far fa-fw fa-handshake-o"></span> <span translate>Introduced By</span></th>
|
|
|
<td class="text-right">{{ deviceName(devices[deviceCfg.introducedBy]) || deviceCfg.introducedBy.substring(0, 5) }}</td>
|
|
|
</tr>
|
|
|
+ <tr>
|
|
|
+ <th><span class="fas fa-fw fa-qrcode"></span> <span translate>Identification</span></th>
|
|
|
+ <td class="text-right">
|
|
|
+ <span tooltip data-original-title="{{'Click to see full identification string and QR code.' | translate}}">
|
|
|
+ <a href="" ng-click="showDeviceIdentification(deviceCfg)">{{deviceShortID(deviceCfg.deviceID)}}</a>
|
|
|
+ </span>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
<tr ng-if="connections[deviceCfg.deviceID].clientVersion">
|
|
|
<th><span class="fas fa-fw fa-tag"></span> <span translate>Version</span></th>
|
|
|
<td class="text-right">{{connections[deviceCfg.deviceID].clientVersion}}</td>
|