PIbd-21_Medvedkov_Coursach/ComputerShopImplementerApp/Views/Home/IndexBatch.cshtml

49 lines
802 B
Plaintext
Raw Normal View History

2024-05-02 00:46:54 +04:00
@using ComputerShopContracts.ViewModels
@model List<BatchViewModel>
@{
ViewData["Title"] = "IndexBatch";
}
<div class="text-center">
<h1 class="display-4">Партии</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="CreateBatch">Создать партию</a>
</p>
<table class="table">
<thead>
<tr>
<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.DateBatch)
</td>
<td>
@Html.DisplayFor(modelItem => item.ProductId)
</td>
</tr>
}
</tbody>
</table>
}
</div>