]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
259bd1e260fb23f8806b59b39da5f3dca858bc48
[ceph.git] /
1 <div class="modal-header">
2   <h4 class="modal-title pull-left">Delete</h4>
3   <button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
4     <span aria-hidden="true">&times;</span>
5   </button>
6 </div>
7 <form name="deleteForm"
8       class="form-horizontal"
9       #formDir="ngForm"
10       [formGroup]="deleteForm"
11       novalidate>
12   <div class="modal-body">
13     Are you sure you want to delete <strong>{{ itemName }}</strong>?
14   </div>
15   <div class="modal-footer">
16     <div class="button-group text-right">
17       <cd-submit-button [form]="deleteForm"
18                         (submitAction)="submit()">
19         Delete
20       </cd-submit-button>
21       <button type="button" class="btn btn-sm btn-default" (click)="modalRef.hide()">Cancel</button>
22     </div>
23   </div>
24 </form>
25