{% extends "base.html" %} {% load i18n %} {% block title %}{{ page_title }}{% endblock title %} {% block content %}

{{ header_title|upper }}

{{ _("Account Name") }}: {{ account.name }}

{{ _("Account Code") }}: {{ account.code }}

{{ _("Balance Type") }}: {{ account.balance_type }}

{{ _("Active") }}: {{ account.active }}

{% for tx in transactions %} {% endfor %}
{{ _("JE Number")}} {{ _("Date") }} {{ _("Debit") }} {{ _("Credit") }} {{ _("Description") }} {{ _("Unit") }} {{ _("Actions") }}
{{ tx.journal_entry.je_number }} {{ tx.journal_entry.timestamp }} {% if tx.tx_type == 'debit' %}${{ tx.amount }}{% endif %} {% if tx.tx_type == 'credit' %}${{ tx.amount }}{% endif %} {{ tx.description }} {{ tx.journal_entry.entity_unit.name }}
Total ${{ total_credits }} ${{ total_debits }}
{% endblock %}