]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/view-cache/view-cache.component.html
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / view-cache / view-cache.component.html
1 <cd-alert-panel type="info"
2 *ngIf="status === vcs.ValueNone">
3 <ng-container i18n>Retrieving data<span *ngIf="statusFor"> for
4 <span [innerHtml]="statusFor"></span></span>. Please wait...</ng-container>
5 </cd-alert-panel>
6
7 <cd-alert-panel *ngIf="status === vcs.ValueStale"
8 type="warning">
9 <ng-container i18n>Displaying previously cached data<span *ngIf="statusFor">
10 for <span [innerHtml]="statusFor"></span></span>.</ng-container>
11 </cd-alert-panel>
12
13 <cd-alert-panel type="error"
14 *ngIf="status === vcs.ValueException">
15 <ng-container i18n>Could not load data<span *ngIf="statusFor"> for
16 <span [innerHtml]="statusFor"></span></span>.
17 Please check the cluster health.</ng-container>
18 </cd-alert-panel>