Files
zaccaria.majid 492c21a109 ok famiglie stati
2023-08-10 12:46:53 +02:00

23 lines
667 B
Plaintext

<table class="table">
<thead>
<tr>
<th scope="col">Idx famiglia</th>
<th scope="col">Descrizione ingresso</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.IdxFamigliaIngresso</td>
<td>@item.DescrizioneIngresso</td>
<td>@item.numTipoEv</td>
<td>@item.numMStati</td>
<td>@item.numRighe</td>
</tr>
}
</tbody>
</table>