yavsc/Yavsc/Views/FormationSettings/Index.cshtml

26 lines
578 B
Text
Raw Normal View History

2017-03-05 16:32:38 +01:00
@model IEnumerable<Yavsc.Models.Workflow.Profiles.FormationSettings>
@{
ViewData["Title"] = "Index";
}
<h2>Index</h2>
<p>
<a asp-action="Create">Create New</a>
</p>
<table class="table">
<tr>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
<a asp-action="Edit" asp-route-id="@item.UserId">Edit</a> |
<a asp-action="Details" asp-route-id="@item.UserId">Details</a> |
<a asp-action="Delete" asp-route-id="@item.UserId">Delete</a>
</td>
</tr>
}
</table>