Правка
This commit is contained in:
parent
1ba0afe7b5
commit
85666a4d36
@ -27,9 +27,6 @@
|
|||||||
<th>
|
<th>
|
||||||
Имя владельца
|
Имя владельца
|
||||||
</th>
|
</th>
|
||||||
<th>
|
|
||||||
Отчество владельца
|
|
||||||
</th>
|
|
||||||
<th>
|
<th>
|
||||||
Баланс
|
Баланс
|
||||||
</th>
|
</th>
|
||||||
@ -38,6 +35,26 @@
|
|||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</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>
|
</table>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user