电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.3 KiB

  1. <div class="modal" tabindex="-1" role="dialog">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <button type="button" class="close" ng-click="$hide()">&times;</button>
  6. <h4 class="modal-title" ng-if="model.selectedGroup.type == 0 || (model.selectedGroup.type == 1 && model.selectedGroup.status == 'inactive')">
  7. {{'IDM.SYSTEM-GROUP-MGMT.POPUP.DELETE-TITLE' | translate}}
  8. </h4>
  9. <h4 class="modal-title" ng-if="model.selectedGroup.type == 1 && model.selectedGroup.status != 'inactive'">
  10. {{'IDM.FUNCTIONAL-GROUP-MGMT.POPUP.DEACTIVATE-TITLE' | translate}}
  11. </h4>
  12. </div>
  13. <div class="modal-body">
  14. <div>
  15. {{'IDM.FUNCTIONAL-GROUP-MGMT.POPUP.DELETE-DESCRIPTION' | translate}}
  16. </div>
  17. </div>
  18. <div class="modal-footer">
  19. <button type="button" class="btn btn-default" ng-click="$hide()">{{'IDM.GENERAL.ACTION.CANCEL' | translate}}</button>
  20. <button type="button" class="btn btn-primary" ng-click="deleteGroup(); $hide()">{{'IDM.FUNCTIONAL-GROUP-MGMT.POPUP.DELETE-CONFIRM' | translate}}</button>
  21. </div>
  22. </div>
  23. </div>
  24. </div>