Правка

This commit is contained in:
nikbel2004@outlook.com 2024-05-28 17:20:48 +04:00
parent 1ba0afe7b5
commit 85666a4d36

View File

@ -3,41 +3,58 @@
@model List<CardViewModel>
@{
ViewData["Title"] = "Cписок банковских карт";
ViewData["Title"] = "Cписок банковских карт";
}
<div class="text-center">
<h1 class="display-4">Банковские карты</h1>
<h1 class="display-4">Банковские карты</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="CreateCard">Оформить банковскую карту</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер карты
</th>
<th>
Фамилия владельца
</th>
<th>
Имя владельца
</th>
<th>
Отчество владельца
</th>
<th>
Баланс
</th>
<th>
Период
</th>
</tr>
</thead>
</table>
}
@{
<p>
<a asp-action="CreateCard">Оформить банковскую карту</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер карты
</th>
<th>
Фамилия владельца
</th>
<th>
Имя владельца
</th>
<th>
Баланс
</th>
<th>
Период
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Number)
</td>
<td>
@Html.DisplayFor(modelItem => item.ClientSurname)
</td>
<td>
@Html.DisplayFor(modelItem => item.Balance)
</td>
<td>
@Html.DisplayFor(modelItem => item.Period)
</td>
</tr>
}
</tbody>
</table>
}
</div>