{% extends 'base.html' %} {% load i18n %} {% load static %} {% load icon from django_ledger %} {% block title %} {% trans "Chart of Accounts" %} {% endblock %} {% block content %}

{% trans "Chart of Accounts" %}

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