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:
@@ -182,7 +182,7 @@
|
|||||||
<tfoot>
|
<tfoot>
|
||||||
<tr class="total-row">
|
<tr class="total-row">
|
||||||
<td>Total</td>
|
<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 class="amount">${{ total_spending | money }}</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user