Files
Samuele Locatelli ea6bd732b8 Fix dettaglio utente
2022-12-19 17:17:18 +01:00

45 lines
1.5 KiB
Plaintext

<div class="card">
<div class="card-header bg-primary text-light">
<div class="d-flex justify-content-between">
<div class="px-1">
<b>@LottoSel</b>
</div>
<div class="px-1 text-end">
<b>@CodArtSel</b>
</div>
</div>
</div>
<div class="card-body p-0 mb-0">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">DTime</th>
<th scope="col">User</th>
<th scope="col" class="text-end">Qty</th>
</tr>
</thead>
<tbody>
@if (ListRecords != null)
{
@foreach (var item in ListRecords)
{
<tr>
<td class="small textCondensed">
<span class="small">
@($"{item.DtScan:yy.MM.dd HH:mm:ss}")
</span>
</td>
<td class="small textCondensed">
@item.UserScan
</td>
<td class="text-end">
<b>@($"{item.Qty:N2}")</b>
</td>
</tr>
}
}
</tbody>
</table>
</div>
</div>