commiting some changes

This commit is contained in:
ani_konarcheva@abv.bg
2022-04-08 14:05:16 +03:00
parent e1f462fb1d
commit 547c6e8774
10 changed files with 56 additions and 37 deletions

View File

@@ -13,6 +13,9 @@
<table class="table">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => model.CarId)
</th>
<th>
@Html.DisplayNameFor(model => model.StartDate)
</th>
@@ -25,6 +28,9 @@
<tbody>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.CarId)
</td>
<td>
@Html.DisplayFor(modelItem => item.StartDate)
</td>
@@ -39,7 +45,7 @@
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
</td>
}
</tr>
</tr>
}
</tbody>
</table>