{% extends "base.html" %} {% load i18n custom_filters %} {% block title %} {% trans "Accounts" %} {% endblock title %} {% block accounts %} {% trans "Accounts"|capfirst %} (current) {% endblock %} {% block content %}

{% trans "Accounts" %}

{% if perms.django_ledger.add_chartofaccountmodel %} {% trans 'New Account' %} {% endif %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"asset_" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"cogs" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"eq_" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"in_" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"ex_" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% include "partials/search_box.html" %} {% with accounts=accounts|filter_by_role:"lia_" %} {% include "ledger/coa_accounts/partials/account_table.html" %} {% endwith %}
{% endblock %} {% block customerJS %} {% endblock %}