27 lines
746 B
Plaintext
27 lines
746 B
Plaintext
@page "/prod-stop"
|
|
|
|
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
|
|
{
|
|
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<div>
|
|
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
|
|
</div>
|
|
|
|
<div class="w-100 my-2">
|
|
<button class="btn btn-info w-100">
|
|
<i class="fa-solid fa-star"></i>
|
|
|
|
<span class="fs-3 fw-bold">Dich Retroattiva</span>
|
|
</button>
|
|
</div>
|
|
<div class="d-flex justify-content-between flex-wrap align-items-center mb-3">
|
|
@foreach(var item in events2show)
|
|
{
|
|
<ProdStopMan objCss="@item.CssClass" objIcon="@item.Icon" objTxt="@(item.Nome.Split(" - ")[1])"></ProdStopMan>
|
|
}
|
|
</div>
|
|
}
|
|
|