Coursach/Course/GuarantorAPP/Views/Home/IndexWorkshop.cshtml

89 lines
1.8 KiB
Plaintext

@using Contracts.ViewModels
@model List<WorkshopViewModel>
@{
ViewData["Title"] = "Workshops";
}
<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="CreateWorkshop" asp-route-id="0">Создать цех</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Название цеха
</th>
<th>
Адрес цеха
</th>
<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.Address)
</td>
<td>
@Html.DisplayFor(modelItem => item.Director)
</td>
<th>
@Html.DisplayFor(modelItem => item.ProductionName)
</th>
<td>
<a asp-action="WorkshopProductionAdd" asp-route-id="@item.Id" class="btn btn-primary">Привязать производство</a>
</td>
<td>
<a asp-action="CreateWorkshop" asp-route-id="@item.Id" class="btn btn-primary">Изменить</a>
</td>
<td>
<form method="post">
<input type="text" title="id" name="id" value="@item.Id" hidden="hidden" />
<input type="submit" class="btn btn-danger" value="Удалить" />
</form>
</td>
</tr>
}
</tbody>
</table>
}
</div>