]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
36d06d833a8f12a42284d29d23f72ca1fb623e39
[ceph.git] /
1 <div class="modal-header">
2   <h4 i18n
3       class="modal-title pull-left">RBD flatten</h4>
4   <button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
5     <span aria-hidden="true">&times;</span>
6   </button>
7 </div>
8 <form name="flattenForm"
9       class="form-horizontal"
10       #formDir="ngForm"
11       [formGroup]="flattenForm"
12       novalidate>
13   <div class="modal-body">
14     You are about to flatten <strong>{{ child }}</strong>.
15     <br>
16     <br>
17     All blocks will be copied from parent <strong>{{ parent }}</strong> to child <strong>{{ child }}</strong>.
18   </div>
19   <div class="modal-footer">
20     <div class="button-group text-right">
21       <cd-submit-button i18n
22                         [form]="flattenForm"
23                         (submitAction)="submit()">
24         Flatten
25       </cd-submit-button>
26       <button i18n type="button" class="btn btn-sm btn-default" (click)="modalRef.hide()">Cancel</button>
27     </div>
28   </div>
29 </form>
30