]> 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
f1d603536d4f229b7b20367491ae0e44abd9521c
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-user-list / rgw-user-list.component.html
1 <cd-alert-panel *ngIf="isStale"
2 type="warning"
3 size="slim"
4 i18n>The user list data might be stale. If needed, you can manually reload it.</cd-alert-panel>
5 <cd-table #table
6 [autoReload]="false"
7 [data]="users"
8 [columns]="columns"
9 columnMode="flex"
10 selectionType="multiClick"
11 (updateSelection)="updateSelection($event)"
12 identifier="uid"
13 (fetchData)="getUserList($event)">
14 <cd-table-actions class="table-actions"
15 [permission]="permission"
16 [selection]="selection"
17 [tableActions]="tableActions">
18 </cd-table-actions>
19 <cd-rgw-user-details cdTableDetail
20 [selection]="selection">
21 </cd-rgw-user-details>
22 </cd-table>