]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-user-list / rgw-user-list.component.html
1 <cd-table #table
2 [autoReload]="false"
3 [data]="users"
4 [columns]="columns"
5 columnMode="flex"
6 selectionType="multi"
7 (updateSelection)="updateSelection($event)"
8 identifier="user_id"
9 (fetchData)="getUserList($event)">
10 <cd-table-actions class="table-actions"
11 [permission]="permission"
12 [selection]="selection"
13 [tableActions]="tableActions">
14 </cd-table-actions>
15 <cd-rgw-user-details cdTableDetail
16 [selection]="selection">
17 </cd-rgw-user-details>
18 </cd-table>