CourseWork_CompShop/ComputerShopProvider/OrdererClientApp/Views/Home/Order.cshtml
2023-05-19 18:26:38 +04:00

75 lines
1.3 KiB
Plaintext

@using ComputerShopContracts.ViewModels
@model List<OrderViewModel>
@{
ViewData["Title"] = "Order";
}
<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="CreateComponent">Создать заказ</a>
</p>
<p>
<a asp-action="EditComponent">Изменить заказ</a>
</p>
<p>
<a asp-action="DeleteComponent">Удалить заказ</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.Sum)
</td>
<td>
@Html.DisplayFor(modelItem => item.Status)
</td
<td>
@Html.DisplayFor(modelItem => item.DateCreate)
</td
<td>
@Html.DisplayFor(modelItem => item.DateImplement)
</td>
</tr>
}
</tbody>
</table>
}
</div>