]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-list/nfs-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / nfs / nfs-list / nfs-list.component.html
CommitLineData
11fdf7f2
TL
1<cd-table #table
2 [data]="exports"
3 columnMode="flex"
4 [columns]="columns"
5 identifier="id"
6 forceIdentifier="true"
7 selectionType="single"
e306af50
TL
8 [hasDetails]="true"
9 (setExpandedRow)="setExpandedRow($event)"
11fdf7f2
TL
10 (updateSelection)="updateSelection($event)">
11 <div class="table-actions btn-toolbar">
12 <cd-table-actions class="btn-group"
13 [permission]="permission"
14 [selection]="selection"
15 [tableActions]="tableActions">
16 </cd-table-actions>
17 </div>
18
19 <cd-nfs-details cdTableDetail
e306af50 20 [selection]="expandedRow">
11fdf7f2
TL
21 </cd-nfs-details>
22</cd-table>
23
24<ng-template #nfsFsal
25 let-value="value">
26 <ng-container *ngIf="value.name==='CEPH'"
27 i18n>CephFS</ng-container>
28 <ng-container *ngIf="value.name==='RGW'"
29 i18n>Object Gateway</ng-container>
30</ng-template>