summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html
blob: 2cc3e08dff07d0be6aa7120833aeabd6b14c28eb (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 i18n
                class="modal-title">Restore Image</ng-container>

  <ng-container class="modal-content">
    <form name="restoreForm"
          class="form"
          #formDir="ngForm"
          [formGroup]="restoreForm"
          novalidate>
      <div class="modal-body">
        <p i18n>To restore&nbsp;
          <kbd>{{ imageSpec }}@{{ imageId }}</kbd>,&nbsp;
          type the image's new name and click&nbsp;
          <kbd>Restore</kbd>.</p>

        <div class="form-group">
          <label class="col-form-label"
                 for="name"
                 i18n>New Name</label>
          <input type="text"
                 class="form-control"
                 name="name"
                 id="name"
                 autocomplete="off"
                 formControlName="name"
                 autofocus>
          <span class="invalid-feedback"
                *ngIf="restoreForm.showError('name', formDir, 'required')"
                i18n>This field is required.</span>
        </div>
      </div>

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