{% extends "base.html" %} {% load accounting_tags %} {% load static %} {% block title %}Accounting Dashboard{% endblock %} {% block content %}
As of {{ today|date:"F j, Y" }}
| Account | Balance |
|---|---|
| {{ account.code }} - {{ account.name }} | {{ account.account_balance|floatformat:2 }} |
| Date | Entry # | Description | Status | Debit Total | Credit Total | Actions |
|---|---|---|---|---|---|---|
| {{ entry.date|date:"Y-m-d" }} | {{ entry.entry_number }} | {{ entry.description|truncatechars:40 }} | {{ entry.get_status_display }} | {{ entry.transactions.all|sum_debits|floatformat:2 }} | {{ entry.transactions.all|sum_credits|floatformat:2 }} |