]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/mirroring/pool-list/pool-list.component.html
0b7cf91776505489a5b21e264111cdddda59bd7b
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / mirroring / pool-list / pool-list.component.html
1 <cd-table [data]="data"
2 columnMode="flex"
3 [columns]="columns"
4 identifier="name"
5 forceIdentifier="true"
6 [autoReload]="0"
7 (fetchData)="refresh()"
8 selectionType="single"
9 (updateSelection)="updateSelection($event)">
10 <cd-table-actions class="table-actions"
11 [permission]="permission"
12 [selection]="selection"
13 [tableActions]="tableActions">
14 </cd-table-actions>
15 </cd-table>
16
17 <ng-template #healthTmpl
18 let-row="row"
19 let-value="value">
20 <span [ngClass]="row.health_color | mirrorHealthColor">{{ value }}</span>
21 </ng-template>