diff --git a/templates/ledger/coa_accounts/account_detail.html b/templates/ledger/coa_accounts/account_detail.html index 1d9f97f4..07798133 100644 --- a/templates/ledger/coa_accounts/account_detail.html +++ b/templates/ledger/coa_accounts/account_detail.html @@ -1,135 +1,122 @@ -{% extends "base.html" %} +{% extends 'base.html' %} {% load i18n %} -{% block title %}{{ page_title }}{% endblock title %} +{% block title %} + {{ page_title }} +{% endblock %} {% block content %} - -
{{ header_title|upper }}
+{{ header_title|upper }}
++ {{ _('Account Name') }}: {{ account.name }} +
++ {{ _('Account Code') }}: {{ account.code }} +
++ {{ _('Balance Type') }}: {{ account.balance_type }} +
++ {{ _('Active') }}: {{ account.active }} +
+{{ _("Account Name") }}: {{ account.name }}
-{{ _("Account Code") }}: {{ account.code }}
-{{ _("Balance Type") }}: {{ account.balance_type }}
-{{ _("Active") }}: {{ account.active }}
-| {{ _("JE Number")}} | -{{ _("Date") }} | -{{ _("Debit") }} | -{{ _("Credit") }} | -{{ _("Description") }} | -{{ _("Unit") }} | -{{ _("Actions") }} | -|||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ tx.journal_entry.je_number }} | -{{ tx.journal_entry.timestamp }} | -{% if tx.tx_type == 'debit' %}${{ tx.amount }}{% endif %} | -{% if tx.tx_type == 'credit' %}${{ tx.amount }}{% endif %} | -{{ tx.description }} | -{{ tx.journal_entry.entity_unit.name }} | -
+
+
-
-
+
-
|
+ |||||||||||||||||||||
| + | Total | +${{ total_debits }} | +${{ total_credits }} | ++ | + | + |