{% load countries %} {% get_country country as country_obj %}

Summed over all Organizations in {{ country_obj.name }} 

{% for year, val in per_year.items %} {% endfor %}
Contribution Expenditures Balance
Cumulative {{ cumulative.contribution }} {{ cumulative.expenditures }} {{ cumulative.balance }}
{{ year }} {{ val.contribution }} {{ val.expenditures }} {{ val.balance }}

Cumulative, per Organization

{% for organization in organizations %} {% if organization.cf_balance_info.cumulative.contribution > 0 or organization.cf_balance_info.cumulative.expenditures > 0 %} {% endif %} {% endfor %}
Contribution Expenditures Balance
Total {{ cumulative.contribution }} {{ cumulative.expenditures }} {{ cumulative.balance }}
{{ organization }} {{ organization.get_orgtype_display }} {{ organization.cf_balance_info.cumulative.contribution }} {{ organization.cf_balance_info.cumulative.expenditures }} {{ organization.cf_balance_info.cumulative.balance }}