From dad0b2fcd3e89ec760934133bfbdca7261f45fd2 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 3 May 2015 10:00:03 +0200 Subject: [PATCH] Show plain amount instead of coloured amounts. [skip ci] --- resources/twig/index.twig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/twig/index.twig b/resources/twig/index.twig index 31f6115a95..1c18d0f3a1 100644 --- a/resources/twig/index.twig +++ b/resources/twig/index.twig @@ -75,12 +75,12 @@
{% if account.percentage <= 50 %} - {{account.difference|formatAmount}} + {{account.difference|formatAmountPlain}} {% endif %}
{% if account.percentage > 50 %} - {{account.difference|formatAmount}} + {{account.difference|formatAmountPlain}} {% endif %}
@@ -89,13 +89,13 @@
{% if account.percentage <= 50 %} - {{account.difference|formatAmount}} - {{account.difference|formatAmount}} + {{account.difference|formatAmountPlain}} + {{account.difference|formatAmountPlain}} {% endif %}
{% if account.percentage > 50 %} - {{account.difference|formatAmount}} + {{account.difference|formatAmountPlain}} {% endif %}