{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans 'Bills' %} {% endblock %} {% block bills %} {% trans 'Bills'|capfirst %} (current) {% endblock %} {% block content %}
{% if request.GET.q %} {% endif %}
{% if page_obj.object_list %}
{% for bill in bills %} {% empty %} {% endfor %}
{% trans 'Account Name' %} {% trans 'Code' %} {% trans 'Balance Type' %} {% trans 'Active' %}
{{ bill.name }} {{ bill.code }} {% if bill.balance_type == 'debit' %}
{{ _('Debit') }}
{% else %}
{{ _('Credit') }}
{% endif %}
{% if bill.active %} {% else %} {% endif %}
{% trans 'No bill found.' %}
{{ page_obj.start_index }} {{ _('to') }} {{ page_obj.end_index }}{{ _('Items of') }}{{ page_obj.paginator.count }}
{% endif %}
{% endblock %}