Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 50 51 52 53 54 55 56 | 3x | <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 #statusColorTpl
let-value="value">
<span class="label"
[ngClass]="{'label-success': 'up' == value, 'label-danger': 'down' == value}">{{ value }}</span>
</ng-template>
<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 }}
</span>
<span *ngIf="row.backstore !== 'user:rbd'"
class="text-muted">
n/a
</span>
</ng-template>
|