Files
Conversion-Test/blazor/IGP/Pages/DataTables/DataTablesPage.razor
T
2026-05-29 14:17:46 -04:00

59 lines
1.4 KiB
Plaintext

@layout PageLayout
@using IGP.Pages.DataTables.Parts
@inherits BasePage
@page "/data-tables"
<LayoutLargeContentComponent>
<WebsiteTitleComponent>Data Tables</WebsiteTitleComponent>
<AlertComponent Type="@SeverityType.Warning">
<Title>Errors Present</Title>
<Message>
Incomplete feature for easily comparing unit stats.
</Message>
</AlertComponent>
<MudTabs Elevation="2">
<MudTabPanel Text="Attacks">
<WeaponTable/>
</MudTabPanel>
<MudTabPanel Text="Production">
<ProductionTable/>
</MudTabPanel>
<MudTabPanel Text="Health">
<VitalityTable/>
</MudTabPanel>
<MudTabPanel Text="Movement">
<MovementTable/>
</MudTabPanel>
</MudTabs>
<ContentDividerComponent></ContentDividerComponent>
<PaperComponent>
<InfoBodyComponent>
<InfoQuestionComponent>
What is this tool?
</InfoQuestionComponent>
<InfoAnswerComponent>
This tool is a data table of all information belonging to a type of data. Such as viewing all weapons,
so one can easily sort and see what weapon attack has the highest range, and what faction and unit that
attack belongs to.
</InfoAnswerComponent>
</InfoBodyComponent>
</PaperComponent>
</LayoutLargeContentComponent>
<style>
</style>
@code {
}