15 lines
423 B
Plaintext
15 lines
423 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="list-group-item">@patrulje.Name</a>
|
|
}
|
|
</ul> |