From bcc394128e6d441074353bec7855b3a20d923c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 2 Aug 2020 18:47:16 +0800 Subject: [PATCH] Applied the title filter to the account titles in the trial balance in the accounting application. --- accounting/templates/accounting/trial-balance.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounting/templates/accounting/trial-balance.html b/accounting/templates/accounting/trial-balance.html index 1d8c09f..a74c39e 100644 --- a/accounting/templates/accounting/trial-balance.html +++ b/accounting/templates/accounting/trial-balance.html @@ -94,7 +94,7 @@ First written: 2020/7/19 {% for item in item_list %} - {{ item.title }} + {{ item.title|title }} {{ item.debit|accounting_amount }} {{ item.credit|accounting_amount }} @@ -131,7 +131,7 @@ First written: 2020/7/19 {% for item in item_list %}
  • - {{ item.title }} + {{ item.title|title }}
    {% if item.debit is not None %}