diff --git a/accounting/templates/accounting/transaction_expense_form.html b/accounting/templates/accounting/transaction_expense_form.html index 9b1ad0e..97288ef 100644 --- a/accounting/templates/accounting/transaction_expense_form.html +++ b/accounting/templates/accounting/transaction_expense_form.html @@ -24,6 +24,7 @@ First written: 2020/7/23 {% load static %} {% load i18n %} {% load mia_core %} +{% load accounting %} {% block settings %} {% setvar "title" _("Cash Expense Transaction") %} @@ -92,7 +93,7 @@ First written: 2020/7/23
  • {{ _("Total")|force_escape }} - {{ form.debit_total }} + {{ form.debit_total|short_amount }}
  • diff --git a/accounting/templates/accounting/transaction_income_form.html b/accounting/templates/accounting/transaction_income_form.html index a7b9b3a..af42b6f 100644 --- a/accounting/templates/accounting/transaction_income_form.html +++ b/accounting/templates/accounting/transaction_income_form.html @@ -24,6 +24,7 @@ First written: 2020/7/23 {% load static %} {% load i18n %} {% load mia_core %} +{% load accounting %} {% block settings %} {% setvar "title" _("Cash Income Transaction") %} @@ -91,7 +92,7 @@ First written: 2020/7/23
  • {{ _("Total")|force_escape }} - {{ form.credit_total }} + {{ form.credit_total|short_amount }}
  • diff --git a/accounting/templates/accounting/transaction_transfer_form.html b/accounting/templates/accounting/transaction_transfer_form.html index 9376800..8e3c355 100644 --- a/accounting/templates/accounting/transaction_transfer_form.html +++ b/accounting/templates/accounting/transaction_transfer_form.html @@ -24,6 +24,7 @@ First written: 2020/7/23 {% load static %} {% load i18n %} {% load mia_core %} +{% load accounting %} {% block settings %} {% setvar "title" _("Transfer Transaction") %} @@ -93,7 +94,7 @@ First written: 2020/7/23
  • {{ _("Total")|force_escape }} - {{ form.debit_total }} + {{ form.debit_total|short_amount }}
    {{ form.balance_error|default:"" }}
  • @@ -123,7 +124,7 @@ First written: 2020/7/23
  • {{ _("Total")|force_escape }} - {{ form.credit_total }} + {{ form.credit_total|short_amount }}
    {{ form.balance_error|default:"" }}