removeDeviceDialogView.html 930 B

123456789101112131415161718
  1. <modal id="remove-device-confirmation" status="warning" icon="fas fa-question-circle" heading="{{'Remove Device' | translate}}" large="no" closeable="yes">
  2. <div class="modal-body">
  3. <p ng-model="currentDevice.name" translate translate-value-name="{{currentDevice.name}}">
  4. Are you sure you want to remove device {%name%}?
  5. </p>
  6. <p ng-if="willBeReintroducedBy" translate translate-value-reintroducer="{{willBeReintroducedBy}}">
  7. {%reintroducer%} might reintroduce this device.
  8. </p>
  9. </div>
  10. <div class="modal-footer">
  11. <button type="button" class="btn btn-warning pull-left btn-sm" data-dismiss="modal" ng-click="deleteDevice()">
  12. <span class="fas fa-check"></span>&nbsp;<span translate>Yes</span>
  13. </button>
  14. <button type="button" class="btn btn-default btn-sm" data-dismiss="modal">
  15. <span class="fas fa-times"></span>&nbsp;<span translate>No</span>
  16. </button>
  17. </div>
  18. </modal>