Files
Aaru.Server/Aaru.Server/Components/Pages/Statistics/Versions.razor
2025-05-21 12:51:52 +01:00

20 lines
865 B
Plaintext

@rendermode InteractiveServer
@inject Microsoft.EntityFrameworkCore.IDbContextFactory<DbContext> DbContextFactory
<h1>
<p class="text-center" style="color: deeppink;">All Aaru versions...</p>
</h1>
<PieChart @ref="_versionsChart" style="padding: 40px" TItem="long"/>
<Grid Data="@VersionsList" FixedHeader="true" PageSize="int.MaxValue" TItem="NameValueStats" Responsive="true"
AllowSorting="true" Class="table table-hover table-bordered table-striped table-dark" style="width: 100%;">
<GridColumns>
<GridColumn TItem="NameValueStats" HeaderText="Filter" PropertyName="@nameof(NameValueStats.name)">
@context.name
</GridColumn>
<GridColumn TItem="NameValueStats" HeaderText="Times found" PropertyName="@nameof(NameValueStats.Value)">
@context.Value
</GridColumn>
</GridColumns>
</Grid>