Files
Mapo-IOB/SMGen/Components/FilesList.razor
T
2023-07-25 15:37:42 +02:00

30 lines
996 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="p-2">
<table class="table">
<thead>
<tr>
<th scope="col">Rul file</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
@foreach (var item in FilesStatus)
{
<tr>
<td scope="row">@item.Key</td>
@if (item.Value)
{
<td class="text-success"><i class="fa-solid fa-circle-check"></i></td>
<td>
<a href="Download?fileName=@Files2Download[item.Key]" target="_blank" class="btn btn-sm bg-success"><i class="fa-solid fa-download"></i></a>
</td>
}
else
{
<td class="text-danger"><i class="fa-solid fa-circle-xmark"></i></td>
}
</tr>
}
</tbody>
</table>
</div>