34 lines
621 B
Smarty
34 lines
621 B
Smarty
<div class="buttons">
|
|
|
|
<a href="/admin/create/money_deposit" class="addbutton add-big">Új befizetés</a>
|
|
|
|
</div>
|
|
|
|
<div class="list half_width">
|
|
{foreach $mod_array as $mod}
|
|
<a href="/admin/money_deposit/{$mod->get_mod_id()}">
|
|
<div class="list_item">
|
|
<table class="money">
|
|
<tr>
|
|
<td class="icon">
|
|
<img src="/_image/deposit.png">
|
|
</td>
|
|
<td>
|
|
{$mod->get_mod_user_kid()->get_uk_name()}
|
|
</td>
|
|
<td class="date">
|
|
{$mod->get_mod_date()}
|
|
</td>
|
|
<td class="sum">
|
|
{$mod->get_mod_sum()} Ft
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</div>
|
|
</a>
|
|
{/foreach}
|
|
|
|
</div>
|
|
|