{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block aux_menu %}
{% trans 'Balance Sheet Options' %}

Current Year {{ year }}

Year: << {{ previous_year }} | {{ next_year }} >>

Quarter: Q1 | Q2 | Q3 | Q4

Month: Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

{% endblock %} {% block view_content %}

{% session_entity_name %}

{% trans 'Income Statement' %}

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

{{ start_date | date:'m/d/Y' }} - {{ end_date | date:'m/d/Y' }}

{% income_statement_table ledger_or_entity=object start_date=start_date end_date=end_date %} {% if ledger %} Go Back {% elif entity %} Go Back {% endif %}
{% endblock %}