From faddceb074746d64c04257e3293395940f640d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 9 Jul 2020 08:15:55 +0800 Subject: [PATCH] Simplified the title in the cash account report. --- accounting/templates/accounting/cash.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounting/templates/accounting/cash.html b/accounting/templates/accounting/cash.html index c391d70..32a9bb9 100644 --- a/accounting/templates/accounting/cash.html +++ b/accounting/templates/accounting/cash.html @@ -24,8 +24,8 @@ First written: 2020/7/1 {% load humanize %} {% block settings %} - {% trans "Cash Account for {} in {}" context "Accounting|" as title_format %} - {% str_format title_format subject.title_zhtw period.description as title %} + {% trans "Cash Account for {} in {}" context "Accounting|" as title %} + {% str_format title subject.title_zhtw period.description as title %} {% setvar "title" title %} {% endblock %}