{% 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' %}${{ tx.amount | currency_format }}{% endif %} {% if tx.tx_type == 'debit' %}${{ tx.amount | currency_format }}{% endif %} {{ tx.description }} {{ tx.journal_entry.entity_unit.name }}
Total ${{ total_credits | currency_format }} ${{ total_debits | currency_format }}