93b7c26d6e
+ display in pagina sessioni
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
@page "/Session"
|
|
|
|
<h3>Sessione</h3>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Inventory Session 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>
|