un positionnement de paramètre workflow des pros
This commit is contained in:
parent
fbd352e788
commit
96746fcc0b
322 changed files with 25893 additions and 3844 deletions
28
Yavsc/Views/Instrumentation/Index.cshtml
Normal file
28
Yavsc/Views/Instrumentation/Index.cshtml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
@model IEnumerable<Yavsc.Models.Booking.Profiles.Instrumentation>
|
||||
|
||||
@{
|
||||
|
||||
ViewBag.SettingLabel = SR["Yavsc.Models.Booking.Profiles.Instrumentation"];
|
||||
ViewData["Title"] = SR[ViewBag.SettingLabel] + "[" +SR["Index"] + "]" ;
|
||||
}
|
||||
|
||||
<h2>Index</h2>
|
||||
|
||||
<p>
|
||||
<a asp-action="Create">@SR["Vous jouez d'un autre instrument'"]</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