diff --git a/app/apps/transactions/templatetags/currency_display.py b/app/apps/transactions/templatetags/currency_display.py index 3d4d507..1654c88 100644 --- a/app/apps/transactions/templatetags/currency_display.py +++ b/app/apps/transactions/templatetags/currency_display.py @@ -27,7 +27,7 @@ def transaction_currency(transaction: Transaction): @register.simple_tag(name="entry_amount") def entry_currency(entry): prefix = entry["prefix"] - amount = entry["total_amount"] + amount = entry["amount"] decimal_places = entry["decimal_places"] suffix = entry["suffix"]