| 123456789101112131415161718 |
- <modal id="remove-device-confirmation" status="warning" icon="fas fa-question-circle" heading="{{'Remove Device' | translate}}" large="no" closeable="yes">
- <div class="modal-body">
- <p ng-model="currentDevice.name" translate translate-value-name="{{currentDevice.name}}">
- Are you sure you want to remove device {%name%}?
- </p>
- <p ng-if="willBeReintroducedBy" translate translate-value-reintroducer="{{willBeReintroducedBy}}">
- {%reintroducer%} might reintroduce this device.
- </p>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-warning pull-left btn-sm" data-dismiss="modal" ng-click="deleteDevice()">
- <span class="fas fa-check"></span> <span translate>Yes</span>
- </button>
- <button type="button" class="btn btn-default btn-sm" data-dismiss="modal">
- <span class="fas fa-times"></span> <span translate>No</span>
- </button>
- </div>
- </modal>
|