12 lines
657 B
HTML
Raw Normal View History

2018-05-24 20:59:32 +02:00
<modal id="idqr" status="info" icon="fas fa-qrcode" heading="{{'Device Identification' | translate}} - {{deviceName(currentDevice)}}" large="yes" closeable="yes">
<div class="modal-body">
<div class="well well-sm text-monospace text-center" select-on-click>{{currentDevice.deviceID}}</div>
<img ng-if="currentDevice.deviceID" class="center-block img-thumbnail" ng-src="qr/?text={{currentDevice.deviceID}}" alt="qr code" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default btn-sm" data-dismiss="modal">
2018-05-24 20:59:32 +02:00
<span class="fas fa-times"></span>&nbsp;<span translate>Close</span>
</button>
</div>
2015-08-02 08:27:05 +02:00
</modal>