{% load base_filters %} {% for acctran in acct_trans %} {{ acctran.account.account_number }} {% if acctran.amount > 0 %}{{acctran.amount|format_currency}}{% else %} {% endif %} {% if acctran.amount < 0 %}{{acctran.credit|format_currency}}{% else %} {% endif %} {{acctran.create_dt|date:'long'}} {{ acctran.account.description }} {% endfor %}