Files
pointMaster/pointMaster/Views/Point/SkiftPatrulje.cshtml
2024-11-24 20:13:51 +01:00

15 lines
428 B
Plaintext

@model pointMaster.Controllers.SkiftPatruljeViewModel;
@{
ViewData["Title"] = "Vælg patrulje";
}
@if (Model.post != null)
{
<h3>Du giver point som: @Model.post.Name</h3>
}
<h1>Vælg patrulje</h1>
<ul class="list-group">
@foreach (var patrulje in Model.Patruljer)
{
<a asp-action="GivPoint" asp-controller="Point" asp-route-id="@patrulje.Id" class="btn btn-primary mb-2">@patrulje.Name</a>
}
</ul>