{% load i18n %} {% load django_ledger %}
| {% 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 %} |
|