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 | 4x | <div class="col-sm-6 col-lg-6">
<legend i18n>iSCSI Topology</legend>
<tree [tree]="tree"
(nodeSelected)="onNodeSelected($event)">
<ng-template let-node>
<span class="node-name"
[innerHTML]="node.value"></span>
<span> </span>
<span class="label"
[ngClass]="{'label-success': ['logged_in'].includes(node.status), 'label-danger': ['logged_out'].includes(node.status)}">
{{ node.status }}
</span>
</ng-template>
</tree>
</div>
<div class="col-sm-6 col-lg-6 metadata"
*ngIf="data">
<legend>{{ title }}</legend>
<cd-table #detailTable
[data]="data"
columnMode="flex"
[columns]="columns"
[limit]="0">
</cd-table>
</div>
<ng-template #highlightTpl
let-row="row"
let-value="value">
<span *ngIf="row.default === undefined || row.default === row.current">{{ value }}</span>
<strong *ngIf="row.default !== undefined && row.default !== row.current">{{ value }}</strong>
</ng-template>
|