{% extends "base.html" %} {% load i18n %} {% load static %} {% load custom_filters %} {% block period_navigation %} {% if entity %}
{% period_navigation 'entity-bs' %}
{% elif ledger %}
{% period_navigation 'ledger-bs' %}
{% elif unit_model %}
{% period_navigation 'unit-bs' %}
{% endif %} {% endblock %} {% block 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 %}
{% endblock %}