]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
e1ef7d46c7846c98822da30a0756b8fc883c4352
[ceph-ci.git] /
1 <div class="modal-header">
2   <h4 i18n
3       class="modal-title pull-left">RBD snapshot rollback</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="rollbackForm"
9       class="form-horizontal"
10       #formDir="ngForm"
11       [formGroup]="rollbackForm"
12       novalidate>
13   <div class="modal-body">
14     You are about to rollback <strong>{{ snapName }}</strong>.
15   </div>
16   <div class="modal-footer">
17     <div class="button-group text-right">
18       <cd-submit-button i18n
19                         [form]="rollbackForm"
20                         (submitAction)="submit()">
21         Rollback
22       </cd-submit-button>
23       <button i18n type="button" class="btn btn-sm btn-default" (click)="modalRef.hide()">Cancel</button>
24     </div>
25   </div>
26 </form>
27