2023-03-19 17:57:55 +00:00
|
|
|
@model Instrumentation
|
2026-07-04 20:03:56 +01:00
|
|
|
@{
|
|
|
|
|
ViewBag.Title = Localizer["Do"];
|
|
|
|
|
}
|
2017-01-13 16:31:40 +01:00
|
|
|
|
2023-03-20 20:26:00 +00:00
|
|
|
<h2>@Model.Tool.Name</h2>
|
2017-01-13 16:31:40 +01:00
|
|
|
|
2023-03-20 20:26:00 +00:00
|
|
|
<a asp-action="RemoveInstrument" asp-controller="Instrumentation" asp-action-id="Model.UserId" asp-action-name="@Model.Tool.Name" >
|
2023-03-20 21:15:02 +00:00
|
|
|
Remove Instrument</a>
|
2023-03-20 19:38:50 +00:00
|
|
|
<form asp-action="AddInstrument" asp-controller="Instrumentation" asp-action-id="Model.UserId" >
|
|
|
|
|
<select name="Name" value="" placeholder="Séléctionnez votre instrument" ></select>
|
2026-07-04 20:03:56 +01:00
|
|
|
</form>
|