{% extends 'transactions/extends/layout.html' %} {% load static %} {% load humanize %} {% block content %} {% block scripts %} {% endblock %}
| Name of GL | Amount |
| Revenue | |
| {{ a.account.name }} | {{ a.amount|floatformat:2|intcomma }} |
| TOTAL REVENUE | {{ total_revenues|floatformat:2|intcomma }} |
|---|---|
| Expenses | |
| {{ b.account.name }} | {{ b.amount|floatformat:2|intcomma }} |
| TOTAL EXPENSES | {{ total_expenses|floatformat:2|intcomma }} |
| PROFITS/LOSSES FOR THE PERIOD | {{ profit_loss|floatformat:2|intcomma }} |