summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi/iscsi.component.html
blob: eccb79514c1bf6ce6dc41a37a0a8d3aeb0eb73ff (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
45
46
47
48
49
<cd-iscsi-tabs></cd-iscsi-tabs>

<legend i18n>Gateways</legend>
<cd-table [data]="gateways"
          (fetchData)="refresh()"
          [columns]="gatewaysColumns">
</cd-table>

<legend i18n>Images</legend>
<cd-table [data]="images"
          [columns]="imagesColumns">
</cd-table>

<ng-template #iscsiSparklineTpl
             let-row="row"
             let-value="value">
  <span *ngIf="row.backstore === 'user:rbd'">
    <cd-sparkline [data]="value"
                  [isBinary]="row.cdIsBinary"></cd-sparkline>
  </span>
  <span *ngIf="row.backstore !== 'user:rbd'"
        class="text-muted">
    n/a
  </span>
</ng-template>

<ng-template #iscsiPerSecondTpl
             let-row="row"
             let-value="value">
  <span *ngIf="row.backstore === 'user:rbd'">
    {{ value }} /s
  </span>
  <span *ngIf="row.backstore !== 'user:rbd'"
        class="text-muted">
    n/a
  </span>
</ng-template>

<ng-template #iscsiRelativeDateTpl
             let-row="row"
             let-value="value">
  <span *ngIf="row.backstore === 'user:rbd'">
    {{ value | relativeDate | notAvailable }}
  </span>
  <span *ngIf="row.backstore !== 'user:rbd'"
        class="text-muted">
    n/a
  </span>
</ng-template>