{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load django_ledger %} {% block header_buttons %} {% if not ledger_model.is_locked %} {% icon 'bi:plus-lg' 20 %} {% trans 'Create Entry' %} {% endif %} {% icon 'bi:lock-fill' 16 %} {% trans 'Lock All' %} {% icon 'bi:cloud-upload-fill' 16 %} {% trans 'Post All' %} {% icon 'bi:arrow-left' 16 %} {% trans 'Ledgers' %} {% endblock %} {% block view_content %}
{# Standardized list header #}
{% 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 %}
{% jes_table journal_entry_qs %}
{% if year %}
{% trans 'Go to month:' %}
{% trans 'All' %} {% for date in date_list %} {{ date | date:'F' }} {% endfor %}
{% else %}
{% trans 'Go to year:' %}
{% trans 'All' %} {% for date in date_list %} {{ date.year }} {% endfor %}
{% endif %}
{% endblock %}