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