{% load i18n %} {% load django_ledger %}
{% for root_role, role_list in accounts_gb %} {% for role, acc_list in role_list %} {% for account in acc_list %} {% endfor %} {% endfor %} {% endfor %}
{% trans 'Account' %} {% trans 'Balance' %} {% trans 'Status' %} {% trans 'Locked' %} {% trans 'Default' %} {% trans 'Actions' %}

{{ root_role | upper }}

{% trans 'Role' %}: {{ role | upper }}
{% if account.depth > 2 %} {% icon 'bi:arrow-return-right' 16 %} {% endif %} {{ account.code }} {{ account.name }}
{{ account.get_balance_type_display }} {% if account.is_active %} {% icon 'ant-design:check-circle-filled' 20 %} {% else %} {% icon 'mdi:dangerous' 20 %} {% endif %} {% if account.is_locked %} {% icon 'ooui:lock' 20 %} {% else %} {% icon 'ooui:un-lock' 20 %} {% endif %} {% if account.role_default %} {% icon 'ant-design:star-filled' 20 %} {% endif %}