{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block aux_menu %} {% if unit_model %}
{% period_navigation 'unit-ic' %}
{% elif entity %}
{% period_navigation 'entity-ic' %}
{% elif ledger %}
{% period_navigation 'ledger-ic' %}
{% endif %} {% endblock %} {% block view_content %}
{% if entity %}

{{ entity.name }}

{% elif ledger %}

{{ ledger.name }}

{% endif %} {% if unit_model %}

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

{% endif %}

{% trans 'Income Statement' %}

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

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

{% income_statement_table io_model=object %} {% if ledger %} Go Back {% elif entity %} Go Back {% endif %} {% trans 'By Unit' %} {% trans 'Download PDF' %}
{% endblock %}