first commit

This commit is contained in:
2026-03-22 00:29:34 +01:00
commit c16b4e3933
1729 changed files with 162013 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
@page "/employeeoverview"
<PageTitle>@Title</PageTitle>
<h2>Employee Overview</h2>
@if(Employees == null)
{
<div>Loading...</div>
} else
{
<QuickViewPopup Employee="_employeeSelected"></QuickViewPopup>
<div class="row">
@foreach (var employee in Employees)
{
<div class="col-12 col-sm-12 col-md-6 col-lg-4 col-xl-3">
<ErrorBoundary>
<ChildContent>
<EmployeeCard Employee="employee" EmployeeQuickViewClicked="ShowQuickViewPopup"></EmployeeCard>
</ChildContent>
<ErrorContent>
<p class="errorUI">Invalid Employee!</p>
</ErrorContent>
</ErrorBoundary>
</div>
}
</div>
}