mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 23:06:14 +00:00
This commit is contained in:
@@ -147,8 +147,10 @@
|
|||||||
<td style="width:30%;">{{ 'total_amount'|_ }}</td>
|
<td style="width:30%;">{{ 'total_amount'|_ }}</td>
|
||||||
<td>
|
<td>
|
||||||
{% for amount in amounts %}
|
{% for amount in amounts %}
|
||||||
{% if first.transactiontype.type == 'Withdrawal' or first.transactiontype.type == 'Deposit' %}
|
{% if first.transactiontype.type == 'Withdrawal' %}
|
||||||
{{ formatAmountBySymbol(amount.amount*-1,amount.symbol, amount.decimal_places) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
|
{{ formatAmountBySymbol(amount.amount*-1,amount.symbol, amount.decimal_places) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
|
||||||
|
{% elseif first.transactiontype.type == 'Deposit' %}
|
||||||
|
{{ formatAmountBySymbol(amount.amount,amount.symbol, amount.decimal_places) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
|
||||||
{% elseif first.transactiontype.type == 'Transfer' %}
|
{% elseif first.transactiontype.type == 'Transfer' %}
|
||||||
<span class="text-info money-transfer">
|
<span class="text-info money-transfer">
|
||||||
{{ formatAmountBySymbol(amount.amount, amount.symbol, amount.decimal_places, false) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
|
{{ formatAmountBySymbol(amount.amount, amount.symbol, amount.decimal_places, false) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
|
||||||
|
Reference in New Issue
Block a user