Merge branch 'main' of https://git.is.ulstu.ru/Belnik/CourseWork_Bank
This commit is contained in:
commit
a0a8308343
@ -27,9 +27,6 @@
|
||||
<th>
|
||||
Имя владельца
|
||||
</th>
|
||||
<th>
|
||||
Отчество владельца
|
||||
</th>
|
||||
<th>
|
||||
Баланс
|
||||
</th>
|
||||
@ -38,6 +35,26 @@
|
||||
</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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user