Show plain amount instead of coloured amounts. [skip ci]

This commit is contained in:
James Cole 2015-05-03 10:00:47 +02:00
parent dad0b2fcd3
commit 17424740e5

View File

@ -132,12 +132,12 @@
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped" style="width: {{100 - account.percentage}}%">
{% if account.percentage <= 50 %}
{{account.piggyBalance|formatAmount}} divided
{{account.piggyBalance|formatAmountPlain}} divided
{% endif %}
</div>
<div class="progress-bar progress-bar-success progress-bar-striped" style="width: {{account.percentage}}%">
{% if account.percentage > 50 %}
{{account.difference|formatAmount}} left to divide
{{account.difference|formatAmountPlain}} left to divide
{% endif %}
</div>
</div>