diff --git a/src/accounting/templates/accounting/report/journal.html b/src/accounting/templates/accounting/report/journal.html
index a5e71a4..33e114f 100644
--- a/src/accounting/templates/accounting/report/journal.html
+++ b/src/accounting/templates/accounting/report/journal.html
@@ -107,7 +107,7 @@ First written: 2023/3/4
{{ item.transaction.date|accounting_format_date }} |
{{ item.currency.name }} |
- {{ item.account }} |
+ {{ item.account.title|title }} |
{{ "" if item.summary is none else item.summary }} |
{{ "" if not item.is_debit else item.amount|accounting_format_amount }} |
{{ "" if item.is_debit else item.amount|accounting_format_amount }} |
@@ -123,7 +123,7 @@ First written: 2023/3/4
{{ item.transaction.date|accounting_format_date }}
- {{ item.account.title }}
+ {{ item.account.title|title }}
{% if item.currency_code != accounting_default_currency_code() %}
{{ item.currency_code }}
{% endif %}