Files
Mapo-IOB/SMGen/Components/FilesList.razor
T
2023-07-25 11:54:11 +02:00

33 lines
1.1 KiB
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 target ="_blank"  href="Download?fileName=@Files2Download[item.Key]"  class="btn btn-block btn-sm btn-success">
<span class ="oi oi-cloud-download">
</span> Download Data</a>
@Files2Download[item.Key]
</td>
}
else
{
<td class="text-danger"><i class="fa-solid fa-circle-xmark"></i></td>
}
</tr>
}
</tbody>
</table>
</div>