Files
pointMaster/pointMaster/Views/Point/SelectPoster.cshtml
2024-11-20 11:17:20 +01:00

11 lines
279 B
Plaintext

@model pointMaster.Controllers.SelectPostViewModel
@{
ViewData["Title"] = "Vælg post";
}
<h1>Vælg post</h1>
@foreach(var item in Model.Poster)
{
<div>
<a asp-action="SelectPost" asp-route-id="@item.Id" class="btn btn-primary mb-2">@item.Name</a>
</div>
}