{% extends "cms/admin_home.html" %} {% load sekizai_tags static i18n %} {% block content %}

{% trans "Choose Financial Basis" %}

{% trans "School Revenues (YTD)" %}:
{{ statement.revenues_ytd|floatformat:2 }}
{% trans "School Expenses (YTD)" %}:
{{ statement.expenses_ytd|floatformat:2 }}
{% trans "Pending Expenses" %}:
{% trans "Awaiting Approval and Payment" %}: {{ statement.expenses_awaiting_approval|floatformat:2 }}
{% if statement.expenses_awaiting_payment > 0 %}
{% trans "Approved, Awaiting Payment" %}: {{ statement.expenses_awaiting_payment|floatformat:2 }}
{% endif %} {% if statement.expenses_paid_notapproved > 0 %}
{% trans "Paid, Not Approved" %}: {{ statement.expenses_paid_notapproved|floatformat:2 }}
{% endif %}
{% trans "Current Balance" %}:
{{ statement.current_balance|floatformat:2 }}
{% if perms.financial.export_financial_data %}
{% trans "Export Financial Data (CSV)" %}
{% endif %}

{% trans "School Performance Over Time" %}

{% trans "Details By Period" %}

{% for this_period in statement.statementByPeriod %} {% endfor %}
{% trans "# Registrations" %}{% trans "Total Revenue" %}{% trans "Total Expenses" %}{% trans "Net Profit" %}
{% trans "Instruction" %}{% trans "Venue Rental" %}{% trans "Other" %}{% trans "Total" %}
{% if perms.financial.view_finances_detail %} {{ this_period.period_name }} {% else %} {{ this_period.period_name }} {% endif %} {{ this_period.registrations }} {{ this_period.revenues|floatformat:2 }} {{ this_period.expenses.instruction|floatformat:2 }} {{ this_period.expenses.venue|floatformat:2 }} {{ this_period.expenses.other|floatformat:2 }} {{ this_period.expenses.total|floatformat:2 }} {{ this_period.net_profit|floatformat:2 }}
{% if is_paginated %} {% endif %}
{% addtoblock "css" %} {% endaddtoblock %} {% addtoblock "js" %} {% endaddtoblock %} {% addtoblock "js" %} {% endaddtoblock %} {% addtoblock "js" %} {% endaddtoblock %} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %}