This commit is contained in:
Илья Федотов 2024-05-28 18:52:21 +04:00
parent 18c1eb5d5f
commit 03ddb8eb00
2 changed files with 22 additions and 17 deletions

View File

@ -27,7 +27,6 @@
<p> <p>
<a asp-action="CreateCostItem">Удалить</a> <a asp-action="CreateCostItem">Удалить</a>
</p> </p>
// todo delete updates
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>

View File

@ -20,26 +20,32 @@
<p> <p>
<a asp-action="CreateProduct">Создать товар</a> <a asp-action="CreateProduct">Создать товар</a>
</p> </p>
<p>
<a asp-action="UpdateCostItem">Изменить</a>
</p>
<p>
<a asp-action="CreateCostItem">Удалить</a>
</p>
<table class="table"> <table class="table">
<thead> <thead>
<th> <tr>
<th> <th>
Номер продукта Номер продукта
</th> </th>
<th> <th>
Название продукта Название продукта
</th> </th>
<th> <th>
Статья затрат Статья затрат
</th> </th>
<th> <th>
Сумма Сумма
</th> </th>
</th> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach (var item in Model) { @foreach (var item in Model) {
<th> <tr>
<th> <th>
@Html.DisplayFor(modelItem => item.ID) @Html.DisplayFor(modelItem => item.ID)
</th> </th>
@ -52,7 +58,7 @@
<th> <th>
@Html.DisplayFor(modelItem => item.Price) @Html.DisplayFor(modelItem => item.Price)
</th> </th>
</th> </tr>
} }
</tbody> </tbody>
</table> </table>