You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
758 B
22 lines
758 B
@page "/reports"
|
|
@using HeartTrack.Models
|
|
|
|
<PageTitle>Reports</PageTitle>
|
|
|
|
<h1>Report list</h1>
|
|
|
|
This is the report list of users.
|
|
|
|
<DataGrid TItem="Report"
|
|
Data="@reports"
|
|
ReadData="@OnReadData"
|
|
TotalItems="@totalReport"
|
|
PageSize="10"
|
|
ShowPager
|
|
Responsive>
|
|
<DataGridColumn TItem="Report" Field="@nameof(Report.Id)" Caption="Id" />
|
|
<DataGridColumn TItem="Report" Field="@nameof(Report.Username)" Caption="@Localizer["Username"]" />
|
|
<DataGridColumn TItem="Report" Field="@nameof(Report.Raison)" Caption="@Localizer["Raison"]" />
|
|
<DataGridColumn TItem="Report" Field="@nameof(Report.Description)" Caption="@Localizer["Description"]" />
|
|
<DataGridColumn Caption="" />
|
|
</DataGrid> |