Coursach/Course/GuarantorAPP/Views/Home/IndexMachine.cshtml
2024-04-30 00:42:26 +04:00

68 lines
1.3 KiB
Plaintext

@using Contracts.ViewModels
@model List<MachineViewModel>
@{
ViewData["Title"] = "Machines";
}
<div class="text-center">
<h1 class="display-4">Детали</h1>
</div>
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Авторизируйтесь</h3>
return;
}
<p>
<a asp-action="CreateMachine">Создать станок</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Название станка
</th>
<th>
Страна производства
</th>
<th>
Изменить станок
</th>
<th>
Удалить станок
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.Country)
</td>
<td>
<a asp-action="CreateMachine" asp-route-id="@item.Id" class="btn btn-primary">Изменить</a>
</td>
<td>
<a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-danger">Удалить</a>
</td>
</tr>
}
</tbody>
</table>
}
</div>