{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load i18n %} {% load static %} {% load icon from django_ledger %} {% block header_buttons %} {% icon 'bi:plus-lg' 20 %} {% trans 'Create CoA' %} {% if not inactive %} {% icon 'bi:eye-slash' 16 %} {% trans 'Show Inactive' %} {% else %} {% icon 'bi:eye' 16 %} {% trans 'Show Active' %} {% endif %} {% endblock %} {% block view_content %}
{% for coa_model in coa_list %}
{% include 'django_ledger/chart_of_accounts/includes/coa_card.html' with coa_model=coa_model %}
{% endfor %}
{% endblock %}