{% extends 'base.html' %} {% block content %}

Chart of Accounts

+ Create New Account {% for account in accounts %} {% empty %} {% endfor %}
Code Name Parent Sub Type Status
{{ account.code }} {{ account.name }} {{ account.full_name }} {{ account.sub_type.name }} {% if account.parent %} {{ account.parent.name }} {% else %} - {% endif %} {% if account.is_active %} Active {% else %} Inactive {% endif %}
No accounts found.
{% endblock %}