]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / osd / osd-scrub-modal / osd-scrub-modal.component.html
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 class="form-horizontal"
8 #formDir="ngForm"
9 [formGroup]="scrubForm"
10 novalidate>
11 <div class="modal-body">
12 <div *ngIf="selected.length === 1">
13 <p i18n>You are about to apply a {deep, select, 1 {deep }}scrub to
14 the OSD <strong>{{ selected[0].id }}</strong>.</p>
15 </div>
16 </div>
17
18 <div class="modal-footer">
19 <cd-submit-button (submitAction)="scrub()"
20 [form]="scrubForm"
21 i18n>Submit</cd-submit-button>
22 <cd-back-button [back]="bsModalRef.hide"
23 name="Cancel"
24 i18n-name>
25 </cd-back-button>
26 </div>
27 </form>
28 </ng-container>
29 </cd-modal>