Files
aviq-boilerplate/CityInfo.WEB/Pages/CitiesOverview.razor
T
2026-03-22 16:28:01 +01:00

37 lines
1017 B
Plaintext

@page "/city"
<PageHeader Name="Villes" NameType="Liste" Link="/cities/create"></PageHeader>
<Card>
<table class="table table-responsive">
<thead>
<tr>
<th>#</th>
<th class="text-nowrap">Nom</th>
<th class="text-nowrap">Détails</th>
</tr>
</thead>
<tbody>
@if(Cities == null)
{
<tr>
<td colspan="3">
<Loading></Loading>
</td>
</tr>
} else
{
@foreach (var city in Cities)
{
<tr>
<th>@city.Id</th>
<td>@city.Name</td>
<td>
<a class="btn btn-primary" href="@($"/city/{city.Id}")">Détails</a>
</td>
</tr>
}
}
</tbody>
</table>
</Card>