diff --git a/resources/views/transactions/show.twig b/resources/views/transactions/show.twig
index c72cdd4731..c126d55379 100644
--- a/resources/views/transactions/show.twig
+++ b/resources/views/transactions/show.twig
@@ -18,35 +18,35 @@
@@ -147,8 +147,10 @@
{{ 'total_amount'|_ }} |
{% 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 %}
+ {% 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' %}
{{ formatAmountBySymbol(amount.amount, amount.symbol, amount.decimal_places, false) }}{% if loop.index0 != amounts|length -1 %}, {% endif %}
@@ -213,29 +215,29 @@
{{ 'edit'|_ }}
{{ 'delete'|_ }}
+ class="fa fa-trash"> {{ 'delete'|_ }}
{# convert to different type #}
{% if groupArray.transactions[0].type != 'withdrawal' %}
{{ 'convert_to_withdrawal'|_ }}
+ class="fa fa-exchange"> {{ 'convert_to_withdrawal'|_ }}
{% endif %}
{% if groupArray.transactions[0].type != 'deposit' %}
{{ 'convert_to_deposit'|_ }}
+ class="fa fa-exchange"> {{ 'convert_to_deposit'|_ }}
{% endif %}
{% if groupArray.transactions[0].type != 'transfer' %}
{{ 'convert_to_transfer'|_ }}
+ class="fa fa-exchange"> {{ 'convert_to_transfer'|_ }}
{% endif %}
@@ -243,20 +245,20 @@
{% if groupArray.transactions[0].type != 'opening balance' and groupArray.transactions[0].type != 'reconciliation' %}
{{ 'clone'|_ }}
+ class="fa fa-copy"> {{ 'clone'|_ }}
{% endif %}
{{ 'link_transaction'|_ }}
+ class="fa fa-fw fa-link">{{ 'link_transaction'|_ }}
{{ 'create_rule_from_transaction'|_ }}
+ class="fa fa-fw fa-random">{{ 'create_rule_from_transaction'|_ }}
{{ 'create_recurring_from_transaction'|_ }}
+ class="fa fa-fw fa-paint-brush">{{ 'create_recurring_from_transaction'|_ }}
@@ -411,7 +413,7 @@
|
+ class="fa fa-fw fa-arrows-h">
|