9007a4df85
- inizio gestione display folder ODL - browse directory locale x documenti - da verificare metodo refresh modulo browse
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
|
|
<table class="table table-sm table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th class="text-end">Type</th>
|
|
<th class="text-end">Size</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (ListFiles == null || ListFiles.Count == 0)
|
|
{
|
|
<tr>
|
|
<td colspan="3">
|
|
<div class="alert alert-info text-center fs-5">Attenzione: nessun file trovato per ODL richiesto.</div>
|
|
</td>
|
|
</tr>
|
|
}
|
|
else
|
|
{
|
|
@foreach (var record in ListFiles)
|
|
{
|
|
<tr>
|
|
<td>
|
|
<a href="@FileLink(record.Name)" target="_blank" class="" title="Download File">@record.Name</a>
|
|
|
|
</td>
|
|
<td class="text-end">@record.Extension</td>
|
|
<td class="text-end">@CalcSize(record.Length)</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table> |