Правка

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> @model List<CardViewModel>
@{ @{
ViewData["Title"] = "Cписок банковских карт"; ViewData["Title"] = "Cписок банковских карт";
} }
<div class="text-center"> <div class="text-center">
<h1 class="display-4">Банковские карты</h1> <h1 class="display-4">Банковские карты</h1>
</div> </div>
<div class="text-center"> <div class="text-center">
@{ @{
<p> <p>
<a asp-action="CreateCard">Оформить банковскую карту</a> <a asp-action="CreateCard">Оформить банковскую карту</a>
</p> </p>
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th> <th>
Номер карты Номер карты
</th> </th>
<th> <th>
Фамилия владельца Фамилия владельца
</th> </th>
<th> <th>
Имя владельца Имя владельца
</th> </th>
<th> <th>
Отчество владельца Баланс
</th> </th>
<th> <th>
Баланс Период
</th> </th>
<th> </tr>
Период </thead>
</th> <tbody>
</tr> @foreach (var item in Model)
</thead> {
</table> <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> </div>