{% 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 %}
| 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 %} |
Get started by creating your first account in the chart of accounts
Add Your First AccountCash, Bank, Inventory, Equipment (Code: 1xxx)
Loans, Payables (Code: 2xxx)
Capital, Retained Earnings (Code: 3xxx)
Sales, Service Revenue (Code: 4xxx)
Rent, Utilities, Salaries (Code: 5xxx)