Files
mapo-core/MP.SPEC/Components/ListOdlLotto.razor
T
2022-11-29 18:14:42 +01:00

33 lines
944 B
Plaintext

<div class="bg-info p-2">
<div class="bg-light">
<table class="table table-striped table-sm">
<thead>
<tr>
<th>ODL</th>
</tr>
</thead>
<tbody>
@if (elencoODL == null || elencoODL.Count == 0)
{
<div class="alert alert-warning" role="alert">No record</div>
}
else
{
@foreach (var item in elencoODL)
{
<tr>
<td class="fw-bold">
<a class="btn btn-sm btn-primary" target="_blank">
@item
</a>
</td>
</tr>
}
}
</tbody>
</table>
</div>
</div>