14 |
15 |
16 | @L[$"{DataUsage.Name} Usage"]
17 | @DataUsage.Usage %
18 |
19 |
20 | @if (DataUsage.Usage >= Threshold.Critical)
21 | {
22 |
@L["Critical: the usage is too high!"]
23 | }
24 | else if (DataUsage.Usage >= Threshold.Warning)
25 | {
26 |
@L["Warning: the usage is high!"]
27 | }
28 | else
29 | {
30 |
@L["The usage is normal!"]
31 | }
32 |
33 | }
--------------------------------------------------------------------------------
/src/Corsinvest.ProxmoxVE.Admin.ClusterStatus/Components/WidgetInfo/RenderWidgetInfoBackups.razor:
--------------------------------------------------------------------------------
1 | @*
2 | * SPDX-FileCopyrightText: Copyright Corsinvest Srl
3 | * SPDX-License-Identifier: AGPL-3.0-only
4 | *@
5 | @inherits AHComponentBase
6 |
7 |