{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load static %} {% load django_ledger %} {% load i18n %} {% block header_buttons %} {% icon 'bi:plus-lg' 20 %} {% trans 'Create Ledger' %} {% endblock %} {% block view_content %}
{% 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 %}
{% ledgers_table ledger_list %}
{% 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 %}
{% if not view.show_all %} {% trans 'Show All' %} {% endif %} {% if not view.show_visible %} {% trans 'Only Visible' %} {% endif %} {% if not view.show_current %} {% trans 'Show Current' %} {% endif %} {% icon 'bi:arrow-left' 16 %} {% trans 'Back to Dashboard' %}
{% endblock %}