Files
lux/Lux.Report.Manager/Components/Compo/RepoFileList.razor
T
2026-04-07 18:39:46 +02:00

29 lines
1.0 KiB
Plaintext

<b>@CurrReport.Name</b>
<div class="card shadow">
@* <div class="card-header">Elenco</div> *@
<div class="card-footer">
<table class="table table-sm table-striped">
<thead>
<tr>
<th>Report</th>
</tr>
</thead>
<tbody>
@foreach (var item in ListReports)
{
<tr>
<td>
<button class="btn btn-primary w-100" @onclick="() => ReqEdit(item)">
<div class="d-flex justify-content-between">
<div class="px-0"><i class="fa-solid fa-up-right-from-square"></i></div>
<div class="px-0">@FileName(item)</div>
</div>
</button>
</td>
</tr>
}
</tbody>
</table>
</div>
</div>