25 lines
668 B
Plaintext
25 lines
668 B
Plaintext
@page "/audit"
|
|
|
|
@using FoodsharingSiegen.Server.BaseClasses
|
|
@using FoodsharingSiegen.Contracts.Entity
|
|
@using FoodsharingSiegen.Server.Data
|
|
@using FoodsharingSiegen.Server.Data.Service
|
|
|
|
@inherits FsBase
|
|
|
|
<PageTitle>Aktivitäten</PageTitle>
|
|
|
|
<h4>Aktivitäten</h4>
|
|
|
|
<DataGrid TItem="Audit"
|
|
Data="@Audits"
|
|
Responsive>
|
|
<DataGridColumn Field="@nameof(Audit.Created)" Caption="Datum" Width="180px" />
|
|
<DataGridColumn Caption="Aktion">
|
|
<DisplayTemplate>
|
|
<span>
|
|
@((context as Audit).User?.Name) @(AuditHelper.CreateText(context))
|
|
</span>
|
|
</DisplayTemplate>
|
|
</DataGridColumn>
|
|
</DataGrid> |