]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
1000f5fb34e3522b72b15618fb448395ebc0c24b
[ceph-ci.git] /
1 <cd-modal [modalRef]="bsModalRef">
2   <ng-container class="modal-title"
3                 i18n>OSDs {deep, select, 1 {Deep }}Scrub</ng-container>
4
5   <ng-container class="modal-content">
6     <form name="scrubForm"
7           #formDir="ngForm"
8           [formGroup]="scrubForm"
9           novalidate>
10       <div class="modal-body">
11         <div *ngIf="selected.length === 1">
12           <p i18n>You are about to apply a {deep, select, 1 {deep }}scrub to
13             the OSD <strong>{{ selected[0].id }}</strong>.</p>
14         </div>
15       </div>
16
17       <div class="modal-footer">
18         <cd-submit-button (submitAction)="scrub()"
19                           [form]="scrubForm"
20                           i18n>Submit</cd-submit-button>
21         <cd-back-button [back]="bsModalRef.hide"
22                         name="Cancel"
23                         i18n-name>
24         </cd-back-button>
25       </div>
26     </form>
27   </ng-container>
28 </cd-modal>