{% load i18n %} {% if accounts %}
{% for account in accounts %} {% empty %} {% endfor %}
{% trans "Account Name" %} {% trans "Code" %} {% trans "Balance Type" %} {% trans "Active" %}
{{ account.name }} {{ account.code }} {% if account.balance_type == 'debit' %}
{{ _("Debit") }}
{% else %}
{{ _("Credit") }}
{% endif %}
{% if account.active %} {% else %} {% endif %}
{% trans "No Accounts Found" %}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% else %}
{% trans "No accounts found in this category." %}
{% endif %}