19 lines
364 B
Plaintext
19 lines
364 B
Plaintext
@if (AllRecords == null)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
if (AllRecords.Count == 0)
|
|
{
|
|
<div class="alert alert-warning">Nessun Ordine da Bilanciare</div>
|
|
}
|
|
else
|
|
{
|
|
foreach (var estimPOR in AllRecords)
|
|
{
|
|
<EstPorDetail CurrPOR="@estimPOR" EC_DoBalance="DoBalance"></EstPorDetail>
|
|
}
|
|
}
|
|
}
|