{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block view_content %}
{% if month %}

{{ month | date:'F Y' }}

{% elif year %}

Year {{ year | date:'Y' }} Bills

{% else %}

{% trans 'Latest Estimates' %}

{% endif %}
{% if previous_month %} {% endif %} {% if next_month %} {% endif %} {% if previous_year %} {% endif %} {% if next_year %} {% endif %} {% if page_obj %} {% if page_obj.has_previous %} {% endif %}

page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}

{% if page_obj.has_next %} {% endif %} {% endif %}
{% customer_estimate_table estimate_list %} {% if year %}
{% trans 'Go to month:' %}

{% trans 'All' %} | {% for date in date_list %} {{ date | date:'F' }} {% if not forloop.last %}>{% endif %} {% endfor %}

{% else %}
{% trans 'Go to year:' %}

{% trans 'All' %} | {% for date in date_list %} {{ date.year }} {% if not forloop.last %}>{% endif %} {% endfor %}

{% endif %}
{% endblock %}