{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load icon from django_ledger %} {% block view_content %}

Chart of Accounts {% icon 'carbon:add-alt' 60 %}

{% if not inactive %} {% trans 'Show Inactive' %} {% else %} {% trans 'Show Active' %} {% endif %}
{% for coa_model in coa_list %}
{% include 'django_ledger/chart_of_accounts/includes/coa_card.html' with coa_model=coa_model %}
{% endfor %}
{% endblock %}