{% load humanize %} {% load difference_calc %} {% block content %} {% include 'transactions/exports/header_template.html'%}
| Name of GL | Amount |
| REVENUES | |
| {{ 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 }} |