{% extends "base.html" %} {% block title %}General Ledger{% endblock %} {% block content %}

General Ledger

Hold Ctrl (Windows) or Cmd (Mac) to select multiple
{% for account, data in ledger_data.items %}

{{ account.name }} ({{ account.account_type }})

{% for transaction in data.transactions %} {% endfor %}
Date Description Debit Credit
{{ transaction.journal_entry.date }} {{ transaction.journal_entry.description }} {{ transaction.debit }} {{ transaction.credit }}
Total {{ data.total_debit }} {{ data.total_credit }}
{% endfor %}
{% endblock %}