33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<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> |