CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptCashierApp/Views/Home/Crediting.cshtml

68 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-05-18 17:56:47 +04:00
@using BankYouBankruptContracts.ViewModels.Client.Default
2023-05-17 17:42:40 +04:00
@model List<CreditingViewModel>
@{
ViewData["Title"] = "Заявки на зачисление";
}
<div class="text-center">
<h1 class="display-4">Заявки</h1>
</div>
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Сначала авторизируйтесь</h3>
return;
}
<p>
2023-05-17 18:26:43 +04:00
<a asp-action="CloseCrediting">Одобрение заявки</a>
2023-05-17 17:42:40 +04:00
</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.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.CardNumber)
</td>
<td>
@Html.DisplayFor(modelItem => item.Sum)
</td>
<td>
@Html.DisplayFor(modelItem => item.DateOpen)
</td>
<td>
@Html.DisplayFor(modelItem => item.Status)
</td>
</tr>
}
</tbody>
</table>
}
</div>