{% 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 %}

{% if month %}{% trans 'For the month ended' %} {{ to_date | date:'F j, Y' }} {% elif quarter %}{% trans 'For the quarter ended' %} {{ to_date | date:'F j, Y' }} {% else %}{% trans 'For the fiscal year ended' %} {{ to_date | date:'F j, Y' }} {% endif %}

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