]> 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
import 15.2.4
[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 [hasDetails]="true"
12 (setExpandedRow)="setExpandedRow($event)"
13 (updateSelection)="updateSelection($event)"
14 identifier="uid"
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
22 [selection]="expandedRow">
23 </cd-rgw-user-details>
24 </cd-table>