49 lines
802 B
Plaintext
49 lines
802 B
Plaintext
@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> |