Darstellung der Prospects fragmentiert
This commit is contained in:
17
FoodsharingSiegen.Server/Pages/ProspectsDone.razor
Normal file
17
FoodsharingSiegen.Server/Pages/ProspectsDone.razor
Normal file
@@ -0,0 +1,17 @@
|
||||
@page "/done"
|
||||
|
||||
@inherits FsBase
|
||||
|
||||
<PageTitle>Abgeschlossene Einarbeitungen</PageTitle>
|
||||
<h2>Abgeschlossene Einarbeitungen</h2>
|
||||
|
||||
@if (ProspectList?.Any() == true)
|
||||
{
|
||||
<hr />
|
||||
<h5>@ProspectList.Count Einträge</h5>
|
||||
<div class="row m-0">
|
||||
<Repeater Items="@ProspectList">
|
||||
<ProspectContainer Prospect="context" RemoveInteraction="RemoveInteraction"></ProspectContainer>
|
||||
</Repeater>
|
||||
</div>
|
||||
}
|
||||
Reference in New Issue
Block a user