]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/mirroring/pool-list/pool-list.component.html
1e4e72df19651aff478a10effefbe5164891a810
[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]="-1"
7 (fetchData)="refresh()"
8 selectionType="single"
9 (updateSelection)="updateSelection($event)"
10 [status]="tableStatus">
11 <cd-table-actions class="table-actions"
12 [permission]="permission"
13 [selection]="selection"
14 [tableActions]="tableActions">
15 </cd-table-actions>
16 </cd-table>
17
18 <ng-template #healthTmpl
19 let-row="row"
20 let-value="value">
21 <span [ngClass]="row.health_color | mirrorHealthColor">{{ value }}</span>
22 </ng-template>
23 <router-outlet name="modal"></router-outlet>