Files
magman/MagMan.UI/Pages/ProjectsStatus.razor
2024-02-01 15:06:50 +01:00

30 lines
688 B
Plaintext

@page "/ProjectsStatus"
<PageTitle>Projects Status</PageTitle>
@if (isLoading)
{
<LoadingData></LoadingData>
}
else if (CustomerID == 0)
{
<CmpCustomerUndef></CmpCustomerUndef>
}
else
{
<div class="row">
<div class="@mainCss">
<ProjectMan CustomerId="@CustomerID" KeyNum="@nKey" E_ProjSel="SaveProj"></ProjectMan>
</div>
@if (ProjSel != null)
{
<div class="col-6">
<ResourcesAct KeyNum="@nKey" ProjDbId="@ProjSel.ProjDbId"></ResourcesAct>
<br />
<ResourcesEstim KeyNum="@nKey" ProjDbId="@ProjSel.ProjDbId"></ResourcesEstim>
</div>
}
</div>
}