{extends file="$tpl_admin_layout"} {block name="content"}
{$_L['Date']} | {$_L['Account']} | {$_L['Type']} | {$_L['Category']} | {$_L['Amount']} | {$_L['Payee']} | {$_L['Description']} | {$_L['Dr']} | {$_L['Balance']} | {foreach $d as $ds}
---|---|---|---|---|---|---|---|---|
{date( $_c['df'], strtotime($ds['date']))} | {$ds['account']} | {ib_lan_get_line($ds['type'])} | {if $ds['category'] == 'Uncategorized'}{$_L['Uncategorized']} {else} {$ds['category']} {/if} | {$_c['currency_code']} {number_format($ds['amount'],2,$_c['dec_point'],$_c['thousands_sep'])} | {$ds['payee']} | {$ds['description']} | {$_c['currency_code']} {number_format($ds['dr'],2,$_c['dec_point'],$_c['thousands_sep'])} | {$_c['currency_code']} {number_format($ds['bal'],2,$_c['dec_point'],$_c['thousands_sep'])} |