Fix history regarding category__budget

This commit is contained in:
Edgar P. Burkhart 2024-01-03 16:07:10 +01:00
parent e4169bd1c3
commit ef90d52807
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 6 additions and 6 deletions

View file

@ -41,7 +41,7 @@ class AccountUpdateView(NummiUpdateView):
"new_statement", kwargs={"account": account.pk}
),
"statements": _statements[:8],
"history": history(account.transaction_set),
"history": history(account.transaction_set.exclude(category__budget=False)),
}