summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html
blob: 00fe92b32b734ecf507ab2c0080f0b2e169ba577 (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
42
43
44
<cd-modal [modalRef]="activeModal"
          pageURL="mirroring">
  <ng-container i18n
                class="modal-title">Edit pool mirror mode</ng-container>

  <ng-container class="modal-content">
    <form name="editModeForm"
          class="form"
          #formDir="ngForm"
          [formGroup]="editModeForm"
          novalidate>
      <div class="modal-body">
        <p>
          <ng-container i18n>To edit the mirror mode for pool&nbsp;
          <kbd>{{ poolName }}</kbd>, select a new mode from the list and click&nbsp;
          <kbd>Update</kbd>.</ng-container>
        </p>

        <div class="form-group">
          <label class="col-form-label"
                 for="mirrorMode">
            <span i18n>Mode</span>
          </label>
          <select id="mirrorMode"
                  name="mirrorMode"
                  class="form-control"
                  formControlName="mirrorMode">
            <option *ngFor="let mirrorMode of mirrorModes"
                    [value]="mirrorMode.id">{{ mirrorMode.name }}</option>
          </select>
          <span class="invalid-feedback"
                *ngIf="editModeForm.showError('mirrorMode', formDir, 'cannotDisable')"
                i18n>Peer clusters must be removed prior to disabling mirror.</span>
        </div>
      </div>

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