2023-03-28 08:53:30 +04:00

63 lines
1.7 KiB
Plaintext

@model List<SushiBarContracts.ViewModels.OrderViewModel>
@{
ViewData["Title"] = "Home Page";
}
<div class="text-center">
<h1 class="display-4">Orders</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="Create">Create order</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Number
</th>
<th>
Sushi
</th>
<th>
Date implements
</th>
<th>
Count
</th>
<th>
Sum
</th>
<th>
Status
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.SushiName)
</td>
<td>
@Html.DisplayFor(modelItem => item.DateCreate)
</td>
<td>
@Html.DisplayFor(modelItem => item.Count)
</td>
<td>
@Html.DisplayFor(modelItem => item.Sum)
</td>
<td>
@Html.DisplayFor(modelItem => item.Status)
</td>
</tr>
}
</tbody>
</table>
}
</div>