58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
@using ComputerHardwareStoreContracts.ViewModels
|
|
@model List<OrderForProductsViewModel>
|
|
@{
|
|
ViewData["Title"] = "Orders";
|
|
}
|
|
<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 class="text-decoration-none me-3 text-black h5" asp-action="CreateOrder">Создать заказ</a>
|
|
<a class="text-decoration-none me-3 text-black h5" asp-action="UpdateOrder">Изменить заказ</a>
|
|
<a class="text-decoration-none text-black h5" asp-action="DeleteOrder">Удалить заказе</a>
|
|
</p>
|
|
|
|
<table class="OrderTable">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Номер
|
|
</th>
|
|
<th>
|
|
Дата создания
|
|
</th>
|
|
<th>
|
|
Дата выполнения
|
|
</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach (var order in Model)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => order.Id)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => order.DateCreate)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => order.DateImplemet)
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
}
|
|
</div>
|