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

{{ entity.name }}

{% elif ledger %}

{{ ledger.name }}

{% elif unit_model %}

{{ ledger.name }}

{% endif %}

{% trans 'Balance Sheet' %}

{% if unit_model %}

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

{% endif %}

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

As Of {{ to_date | date:'m/d/Y' }}

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