diff --git a/accounting/templates/accounting/cash_summary.html b/accounting/templates/accounting/cash_summary.html index e79cd13..b39715c 100644 --- a/accounting/templates/accounting/cash_summary.html +++ b/accounting/templates/accounting/cash_summary.html @@ -69,11 +69,15 @@ First written: 2020/7/15 @@ -123,20 +127,36 @@ First written: 2020/7/15 {{ record.label }}
- {{ record.credit_amount|accounting_amount }} - {{ record.debit_amount|accounting_amount }} - {{ record.balance|intcomma:False }} - {{ record.cumulative_balance|intcomma:False }} + + {{ record.credit_amount|accounting_amount }} + + + {{ record.debit_amount|accounting_amount }} + + + {{ record.balance|intcomma:False }} + + + {{ record.cumulative_balance|intcomma:False }} +
{% else %}
{{ record.label }}
- {{ record.credit_amount|accounting_amount }} - {{ record.debit_amount|accounting_amount }} - {{ record.balance|intcomma:False }} - {{ record.cumulative_balance|intcomma:False }} + + {{ record.credit_amount|accounting_amount }} + + + {{ record.debit_amount|accounting_amount }} + + + {{ record.balance|intcomma:False }} + + + {{ record.cumulative_balance|intcomma:False }} +
{% endif %}