30 lines
688 B
Plaintext
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>
|
|
}
|