Formation settings
This commit is contained in:
parent
b69b757837
commit
7cca255404
6 changed files with 239 additions and 0 deletions
26
Yavsc/Views/FormationSettings/Index.cshtml
Normal file
26
Yavsc/Views/FormationSettings/Index.cshtml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
@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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue