{% extends 'finances/base.html' %} {% load countries %} {% load static %} {% block meta_description %}{{ block.super }} Country balance info{% endblock meta_description %} {% block pagetitle %}: Country balance info{% endblock pagetitle %} {% block headsup %} {% endblock headsup %} {% block content %}

Country-Level Financial Data

This table presents our cumulative financial balance information, broken down per country. Top of the list are our champions; those at the bottom of the list threaten our sustainability.

Click on flag to view that country's data

{% for item in countrydata|dictsortreversed:"balance" %} {% if item.balance != 0 %} {% get_country item.country as country_obj %} {% endif %} {% endfor %}
Country Subsidy income Expenditures Balance
{{ country_obj.name }} {{ item.subsidy_income }} {{ item.expenditures }} {{ item.balance }}
Toggle details
{% endblock content %}