{% extends "base.html" %}
{% block headtitle %}Reporting{% endblock %}
{% block breadcrumbs %}
Home
Reporting
{% endblock %}
{% block main_content %}
{% for name, width, type, sortable, css in columns_cashflow %}
{{name}} |
{% endfor %}
Income total |
{{income_total|ecm_amount}} |
Expenditure total |
{{expenditure_total|ecm_amount}} |
Net cash inflow |
{{cashflow|ecm_amount}} |
{% for name, width, type, sortable, css in columns_income %}
{{name}} |
{% endfor %}
{% for item in income %}
{{item.type__refTypeName}} |
{{item.percentage|floatformat:2}} % |
{{item.amount|ecm_amount}} |
{% endfor %}
Total: |
100 % |
{{income_total|ecm_amount}} |
{% for name, width, type, sortable, css in columns_expenditure %}
{{name}} |
{% endfor %}
{% for item in expenditure %}
{{item.type__refTypeName}} |
{{item.percentage|floatformat:2}} % |
{{item.amount|ecm_amount}} |
{% endfor %}
Total: |
100 % |
{{expenditure_total|ecm_amount}} |
{% endblock %}
{% block javascripts %}
{% endblock %}
{% block post_javascripts %}
{% endblock %}