{% extends "base.html" %} {% load ledger %} {% block title %}Accounts{% endblock %} {% block content %}

Accounts

Account Reports

{% for account in accounts %} {% if perms.ledger.change_account or perms.ledger.delete_account %} {% endif %} {% endfor %}
  Name Number Type Debit Total Credit Total Balance Reconciled
{{ account.name }} {{ account.number }} {{ account.type }} ${{ account.debit_total|currency }} ${{ account.credit_total|currency }} ${{ account.balance|currency }} ${{ account.reconciled_balance|currency }}
{% endblock %}