40 lines
645 B
Plaintext
40 lines
645 B
Plaintext
|
@using BankContracts.ViewModels
|
|||
|
|
|||
|
@model List<AccountViewModel>
|
|||
|
|
|||
|
@{
|
|||
|
ViewData["Title"] = "Cписок счетов";
|
|||
|
}
|
|||
|
|
|||
|
<div class="text-center">
|
|||
|
<h1 class="display-4">Счета</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="text-center">
|
|||
|
@{
|
|||
|
<p>
|
|||
|
<a asp-action="CreateAccount">Открыть счёт</a>
|
|||
|
</p>
|
|||
|
<table class="table">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th>
|
|||
|
Номер счёта
|
|||
|
</th>
|
|||
|
<th>
|
|||
|
Имя владельца
|
|||
|
</th>
|
|||
|
<th>
|
|||
|
Отчество владельца
|
|||
|
</th>
|
|||
|
<th>
|
|||
|
Балланс
|
|||
|
</th>
|
|||
|
<th>
|
|||
|
Дата открытия
|
|||
|
</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
</table>
|
|||
|
}
|
|||
|
</div>
|