{% load django_ledger %} {% load trans from i18n %}
{% for tx in transactions %} {% endfor %}
JE Number Date Credit Debit Description Unit Actions
{{ tx.journal_entry.je_number }} {{ tx.journal_entry.timestamp }} {% if tx.tx_type == 'credit' %}{% currency_symbol %}{{ tx.amount | currency_format }}{% endif %} {% if tx.tx_type == 'debit' %}{% currency_symbol %}{{ tx.amount | currency_format }}{% endif %} {{ tx.description }} {{ tx.journal_entry.entity_unit.name }}
Total {% currency_symbol %}{{ total_credits | currency_format }} {% currency_symbol %}{{ total_debits | currency_format }}