Files
qbtmud/Lantean.QBTMud/Components/TorrentsListNav.razor
2024-10-22 09:57:50 +01:00

18 lines
519 B
Plaintext

<MudNavMenu>
<MudNavLink Icon="@(Icons.Material.Outlined.NavigateBefore)" OnClick="NavigateBack">Back</MudNavLink>
<MudDivider />
@if (OrderedTorrents is null)
{
@for (var i = 0; i < 10; i++)
{
<MudSkeleton Animation="Animation.Pulse" Width="100%" Height="25px" />
}
}
else
{
foreach (var torrent in OrderedTorrents)
{
<MudNavLink Href="@("/details/" + torrent.Hash)">@torrent.Name</MudNavLink>
}
}
</MudNavMenu>