{% load i18n %} {% if accounts %}
| {% 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" %} | |||||