fix
This commit is contained in:
parent
18c1eb5d5f
commit
03ddb8eb00
@ -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>
|
||||||
|
@ -20,9 +20,15 @@
|
|||||||
<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>
|
||||||
@ -35,11 +41,11 @@
|
|||||||
<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>
|
||||||
|
Loading…
Reference in New Issue
Block a user