summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html
blob: 2ae6460fbb7326d74d54fd39a2dcc2e6015c7fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<cd-modal [modalRef]="activeModal">
  <ng-container class="modal-title"
                i18n>Cluster-wide OSD Flags</ng-container>

  <ng-container class="modal-content">
    <form name="osdFlagsForm"
          #formDir="ngForm"
          [formGroup]="osdFlagsForm"
          novalidate
          cdFormScope="osd">
      <div class="modal-body osd-modal">
        <div class="custom-control custom-checkbox"
             *ngFor="let flag of flags; let last = last">
          <input class="custom-control-input"
                 type="checkbox"
                 [checked]="flag.value"
                 (change)="flag.value = !flag.value"
                 [name]="flag.code"
                 [id]="flag.code"
                 [disabled]="flag.disabled">
          <label class="custom-control-label"
                 [for]="flag.code"
                 ng-class="['tc_' + key]">
            <strong>{{ flag.name }}</strong>
            <br>
            <span class="form-text text-muted">{{ flag.description }}</span>
          </label>
          <hr class="m-1"
              *ngIf="!last">
        </div>
      </div>

      <div class="modal-footer">
        <cd-form-button-panel (submitActionEvent)="submitAction()"
                              [form]="osdFlagsForm"
                              [showSubmit]="permissions.osd.update"
                              [submitText]="actionLabels.UPDATE"></cd-form-button-panel>
      </div>
    </form>
  </ng-container>
</cd-modal>