25 lines
653 B
Plaintext
25 lines
653 B
Plaintext
@page "/done"
|
|
|
|
@using FoodsharingSiegen.Shared.Helper
|
|
@inherits FsBase
|
|
|
|
<PageTitle>Abgeschlossene Einarbeitungen - @AppSettings.Title</PageTitle>
|
|
<h2>Abgeschlossene Einarbeitungen</h2>
|
|
|
|
@{
|
|
var filterList = ProspectList.ApplyFilter(Filter);
|
|
}
|
|
|
|
<hr />
|
|
<ProspectFilterControl @bind-Filter="Filter"></ProspectFilterControl>
|
|
<hr />
|
|
<h5>@(filterList.Count) Einträge</h5>
|
|
@if (filterList.Any())
|
|
{
|
|
|
|
<div class="row m-0">
|
|
<Repeater Items="@filterList">
|
|
<ProspectContainer Prospect="context" RemoveInteraction="RemoveInteraction" StateFilter="ProspectStateFilter.Completed"></ProspectContainer>
|
|
</Repeater>
|
|
</div>
|
|
} |