{% extends 'base.html' %} {% load i18n %} {% load static %} {% load custom_filters %} {% block period_navigation %} {% if unit_model and entity %}
{% period_navigation 'unit-cf' %}
{% elif entity %}
{% period_navigation 'entity-cf' %}
{% elif ledger %}
{% period_navigation 'ledger-cf' %}
{% elif unit_model %}
{% period_navigation 'unit-cf' %}
{% endif %} {% endblock %} {% block content %}
{% if unit_model and entity %}

{{ entity.name }}

{% elif entity %}

{{ entity.name }}

{% elif ledger %}

{{ ledger.name }}

{% endif %}

{% trans 'Cash Flow Statement' %}

{% if unit_model %}

{{ unit_model.name }} {% trans 'Unit' %}

{% endif %}

{% if quarter %}{{ year }} | Q{{ quarter }} {% elif month %}{{ start_date | date:'F, Y' }} {% else %}{% trans 'Fiscal Year' %} {{ year }} {% endif %}

{{ from_date | date:'m/d/Y' }} - {{ to_date | date:'m/d/Y' }}

{% cash_flow_statement io_model=object %} {% trans 'Download PDF' %}
{% endblock %}