{% load countries %}
{% get_country country as country_obj %}
Summed over all Organizations in {{ country_obj.name }}
|
Contribution |
Expenditures |
Balance |
Cumulative |
{{ cumulative.contribution }} |
{{ cumulative.expenditures }} |
{{ cumulative.balance }} |
{% for year, val in per_year.items %}
{{ year }} |
{{ val.contribution }} |
{{ val.expenditures }} |
{{ val.balance }} |
{% endfor %}
Cumulative, per Organization
|
Contribution |
Expenditures |
Balance |
Total |
{{ cumulative.contribution }} |
{{ cumulative.expenditures }} |
{{ cumulative.balance }} |
{% for organization in organizations %}
{% if organization.cf_balance_info.cumulative.contribution > 0 or organization.cf_balance_info.cumulative.expenditures > 0 %}
{{ organization }} |
{{ organization.cf_balance_info.cumulative.contribution }} |
{{ organization.cf_balance_info.cumulative.expenditures }} |
{{ organization.cf_balance_info.cumulative.balance }} |
{% endif %}
{% endfor %}