- {% if account.percentage <= 50 %}
+ {% if account.percentage >= 20 %}
{{ account.difference|formatAmountPlain }}
{% endif %}
- {% if account.percentage > 50 %}
+ {% if account.percentage < 20 %}
{{ account.difference|formatAmountPlain }}
{% endif %}
@@ -165,13 +165,12 @@
- {% if account.percentage <= 50 %}
- {{ account.difference|formatAmountPlain }}
+ {% if account.percentage >= 20 %}
{{ account.difference|formatAmountPlain }}
{% endif %}
- {% if account.percentage > 50 %}
+ {% if account.percentage < 20 %}
{{ account.difference|formatAmountPlain }}
{% endif %}
@@ -218,12 +217,12 @@
- {% if account.percentage <= 50 %}
+ {% if account.percentage >= 20 %}
{{ account.piggyBalance|formatAmountPlain }} {{ 'divided'|_ }}
{% endif %}
- {% if account.percentage > 50 %}
+ {% if account.percentage < 20 %}
{{ account.difference|formatAmountPlain }} {{ 'toDivide'|_ }}
{% endif %}