Files
mapo-core/MP.INVE/Pages/Session.razor
T
2022-11-15 11:09:18 +01:00

56 lines
1.6 KiB
Plaintext

@page "/Session"
<div class="card">
<div class="card-header">
<h3>Sessione</h3>
</div>
<div class="card-body">
<table class="table">
<thead>
<tr>
<th scope="col">Id</th>
<th scope="col">Description</th>
<th scope="col">Operatore</th>
<th scope="col">Data inizio</th>
<th scope="col">Data fine</th>
<th scope="col">Trasferita</th>
</tr>
</thead>
<tbody>
@if (elencoSessioni != null)
{
@foreach (var item in elencoSessioni)
{
<tr>
<td>
@item.InveSessID
</td>
<td>
@item.Description
</td>
<td>
@item.UserCrea
</td>
<td>
@item.DtStart
</td>
<td>
@item.DtEnd
</td>
<td>
@item.Transferred
</td>
</tr>
}
}
</tbody>
</table>
</div>
<div class="card-footer py-1">
<DataPager />
</div>
</div>