mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-26 00:06:34 -06:00
Use format amount routine [skip ci]
This commit is contained in:
parent
53daa89fcb
commit
0a844e4313
@ -51,7 +51,7 @@
|
||||
{# if sum of income, display: #}
|
||||
{% if report.income[category.id].sum %}
|
||||
<td data-value="{{ report.income[category.id].sum }}">
|
||||
{{ report.income[category.id].sum }}
|
||||
{{ report.income[category.id].sum|formatAmount }}
|
||||
</td>
|
||||
{% else %}
|
||||
<td data-value="0">
|
||||
@ -61,7 +61,7 @@
|
||||
{# if sum of expense, display: #}
|
||||
{% if report.expense[category.id].sum %}
|
||||
<td data-value="{{ report.expense[category.id].sum }}">
|
||||
{{ report.expense[category.id].sum }}
|
||||
{{ report.expense[category.id].sum|formatAmount }}
|
||||
</td>
|
||||
{% else %}
|
||||
<td data-value="0">
|
||||
|
Loading…
Reference in New Issue
Block a user