{% extends "cms/admin_home.html" %} {% load sekizai_tags static i18n %} {% block content %}
{% 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_month.month_name }}{% else %}{{ this_month.month_name }}{% endif %} | {{ this_month.registrations }} | {{ this_month.revenues|floatformat:2 }} | {{ this_month.expenses.instruction|floatformat:2 }} | {{ this_month.expenses.venue|floatformat:2 }} | {{ this_month.expenses.other|floatformat:2 }} | {{ this_month.expenses.total|floatformat:2 }} | {{ this_month.net_profit|floatformat:2 }} |