mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
28 lines
955 B
Plaintext
28 lines
955 B
Plaintext
@if (IsMenu)
|
|
{
|
|
@foreach (var action in Actions)
|
|
{
|
|
if (action.SeparatorBefore)
|
|
{
|
|
<MudDivider />
|
|
}
|
|
<MudMenuItem Icon="@action.Icon" IconColor="@action.Color" Href="@action.Href">@action.Text</MudMenuItem>
|
|
}
|
|
<MudMenuItem Icon="@Icons.Material.Filled.Undo" OnClick="ResetWebUI">Reset Web UI</MudMenuItem>
|
|
<MudDivider />
|
|
<MudMenuItem Icon="@Icons.Material.Filled.Logout" OnClick="Logout">Logout</MudMenuItem>
|
|
<MudMenuItem Icon="@Icons.Material.Filled.ExitToApp" OnClick="Exit">Exit qBittorrent</MudMenuItem>
|
|
}
|
|
else
|
|
{
|
|
<MudNavLink Icon="@Icons.Material.Outlined.Navigation" OnClick="NavigateBack">Torrents</MudNavLink>
|
|
<MudDivider />
|
|
@foreach (var action in Actions)
|
|
{
|
|
if (action.SeparatorBefore)
|
|
{
|
|
<MudDivider />
|
|
}
|
|
<MudNavLink Icon="@action.Icon" IconColor="@action.Color" Href="@action.Href">@action.Text</MudNavLink>
|
|
}
|
|
} |