For Period {{ start_date|date:"F j, Y" }} to {{ end_date|date:"F j, Y" }}
Revenue
{% for revenue in revenues %}
{% if revenue.total %}
| {{ revenue.code }} - {{ revenue.name }} |
{{ revenue.total|floatformat:2 }} |
{% endif %}
{% endfor %}
| Total Revenue |
{{ total_revenue|floatformat:2 }} |
Expenses
{% for expense in expenses %}
{% if expense.total %}
| {{ expense.code }} - {{ expense.name }} |
{{ expense.total|floatformat:2 }} |
{% endif %}
{% endfor %}
| Total Expenses |
{{ total_expenses|floatformat:2 }} |
Net Income: {{ net_income|floatformat:2 }}