Fix /month 500: malformed Jinja in month.html budget total

budgeted_by_cat.values( | money|sum)  ->  budgeted_by_cat.values()|sum|money
Pre-existing template syntax error, unrelated to storage.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-06 16:44:58 -05:00
parent f3485fdc17
commit dc9717a59b

View File

@@ -182,7 +182,7 @@
<tfoot>
<tr class="total-row">
<td>Total</td>
<td class="amount muted">{% if budgeted_by_cat %}${{ budgeted_by_cat.values( | money|sum) }}{% endif %}</td>
<td class="amount muted">{% if budgeted_by_cat %}${{ budgeted_by_cat.values()|sum|money }}{% endif %}</td>
<td class="amount">${{ total_spending | money }}</td>
<td></td>
</tr>