44 lines
767 B
Plaintext
44 lines
767 B
Plaintext
@using BankContracts.ViewModels.Client.ViewModels
|
||
|
||
@model List<CardViewModel>
|
||
|
||
@{
|
||
ViewData["Title"] = "Cписок банковских карт";
|
||
}
|
||
|
||
<div class="text-center">
|
||
<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>
|
||
}
|
||
</div>
|