Darstellung der Prospects fragmentiert

This commit is contained in:
Andre Beging
2023-02-07 23:13:09 +01:00
parent 1b59a9461b
commit df40e2b769
12 changed files with 317 additions and 39 deletions

View 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>
}