23 lines
667 B
Plaintext
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> |