{% extends 'base.html' %} {% load humanize %} {% block title %}Chart of Accounts - 3ncount{% endblock %} {% block page_title %}Chart of Accounts{% endblock %} {% block page_actions %} Add Account {% endblock %} {% block content %}
Assets
{{ accounts|length }}
Liabilities
0
Equity
0
Income
0
Expenses
0

Filter Accounts

{% if request.GET.type %} {% endif %}
{% if accounts %}
{% for account in accounts %} {% endfor %}
Code Name Nama BM Type Balance Status Actions
{{ account.code }} {{ account.name }} {{ account.name_bm|default:"-" }} {% if account.account_type == 'ASSET' %} {{ account.get_account_type_display }} {% elif account.account_type == 'LIABILITY' %} {{ account.get_account_type_display }} {% elif account.account_type == 'EQUITY' %} {{ account.get_account_type_display }} {% elif account.account_type == 'INCOME' %} {{ account.get_account_type_display }} {% else %} {{ account.get_account_type_display }} {% endif %} RM {{ account.get_balance|floatformat:2|intcomma }} {% if account.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No Accounts Found

Get started by creating your first account in the chart of accounts

Add Your First Account
{% endif %}
About Chart of Accounts
Assets (Aset)

Cash, Bank, Inventory, Equipment (Code: 1xxx)

Liabilities (Liabiliti)

Loans, Payables (Code: 2xxx)

Equity (Ekuiti)

Capital, Retained Earnings (Code: 3xxx)

Income (Pendapatan)

Sales, Service Revenue (Code: 4xxx)

Expenses (Perbelanjaan)

Rent, Utilities, Salaries (Code: 5xxx)

{% endblock %}