45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Idx famiglia</th>
|
|
<th scope="col">Descrizion ingresso</th>
|
|
<th scope="col">IOB</th>
|
|
<th scope="col">UDI</th>
|
|
<th scope="col">Totale eventi</th>
|
|
<th scope="col">Totale stati</th>
|
|
<th scope="col">Righe totali</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in FamIngs)
|
|
{
|
|
<tr>
|
|
<td>@item.IdxFamiglia</td>
|
|
<td>@item.Descrizione</td>
|
|
<td>
|
|
@if (item.HasIOB)
|
|
{
|
|
<i class="text-success fa-regular fa-circle-check"></i>
|
|
}
|
|
else
|
|
{
|
|
<i class="text-danger fa-regular fa-circle-xmark"></i>
|
|
}
|
|
</td>
|
|
<td>
|
|
@if (item.HasUDI)
|
|
{
|
|
<i class="text-success fa-regular fa-circle-check"></i>
|
|
}
|
|
else
|
|
{
|
|
<i class="text-danger fa-regular fa-circle-xmark"></i>
|
|
}
|
|
</td>
|
|
<td>@item.numTipoEv</td>
|
|
<td>@item.numMStati</td>
|
|
<td>@item.numRighe</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table> |