money basics: create, update deposits
deposit icon to user list css modified, tablet view available
This commit is contained in:
33
template/templates/money_deposit.tpl
Normal file
33
template/templates/money_deposit.tpl
Normal file
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user