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