{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block aux_menu %} {% 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 view_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 %} {% if entity %} {% trans 'Go Back' %} {% elif ledger %} {% trans 'Go Back' %} {% endif %} {% trans 'By Unit' %} {% trans 'Download PDF' %}
{% endblock %}