PIbd-23-Lisov-N.A-SewingDre.../DressAtelierClientApp/Views/Home/Index.cshtml

70 lines
2.7 KiB
Plaintext

@using DressAtelierContracts.ViewModels
@model List<OrderViewModel>
@{
ViewData["Title"] = "Home Page";
}
<div class="text-center">
<h1 class="display-4">Orders</h1>
</div>
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Sign in</h3>
return;
}
<p>
<a asp-action="Create">Create order</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Number
</th>
<th>
Dress
</th>
<th>
Creation date
</th>
<th>
Quantity
</th>
<th>
Total
</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.DressName)
</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>