]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-user-list / rgw-user-list.component.html
CommitLineData
1911f103
TL
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>
11fdf7f2
TL
5<cd-table #table
6 [autoReload]="false"
7 [data]="users"
8 [columns]="columns"
9 columnMode="flex"
9f95a23c 10 selectionType="multiClick"
e306af50
TL
11 [hasDetails]="true"
12 (setExpandedRow)="setExpandedRow($event)"
11fdf7f2 13 (updateSelection)="updateSelection($event)"
92f5a8d4 14 identifier="uid"
11fdf7f2
TL
15 (fetchData)="getUserList($event)">
16 <cd-table-actions class="table-actions"
17 [permission]="permission"
18 [selection]="selection"
19 [tableActions]="tableActions">
20 </cd-table-actions>
21 <cd-rgw-user-details cdTableDetail
e306af50 22 [selection]="expandedRow">
11fdf7f2
TL
23 </cd-rgw-user-details>
24</cd-table>