mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Show plain amount instead of coloured amounts. [skip ci]
This commit is contained in:
parent
c48dbf030f
commit
dad0b2fcd3
@ -75,12 +75,12 @@
|
|||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div class="progress-bar progress-bar-success progress-bar-striped" style="width: {{ 100 - account.percentage }}%">
|
<div class="progress-bar progress-bar-success progress-bar-striped" style="width: {{ 100 - account.percentage }}%">
|
||||||
{% if account.percentage <= 50 %}
|
{% if account.percentage <= 50 %}
|
||||||
{{account.difference|formatAmount}}
|
{{account.difference|formatAmountPlain}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="progress-bar progress-bar-danger progress-bar-striped" style="width: {{ account.percentage }}%">
|
<div class="progress-bar progress-bar-danger progress-bar-striped" style="width: {{ account.percentage }}%">
|
||||||
{% if account.percentage > 50 %}
|
{% if account.percentage > 50 %}
|
||||||
{{account.difference|formatAmount}}
|
{{account.difference|formatAmountPlain}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -89,13 +89,13 @@
|
|||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div class="progress-bar progress-bar-success progress-bar-striped" style="width: {{account.percentage}}%">
|
<div class="progress-bar progress-bar-success progress-bar-striped" style="width: {{account.percentage}}%">
|
||||||
{% if account.percentage <= 50 %}
|
{% if account.percentage <= 50 %}
|
||||||
{{account.difference|formatAmount}}
|
{{account.difference|formatAmountPlain}}
|
||||||
{{account.difference|formatAmount}}
|
{{account.difference|formatAmountPlain}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="progress-bar progress-bar-info progress-bar-striped" style="width: {{100 - account.percentage}}%">
|
<div class="progress-bar progress-bar-info progress-bar-striped" style="width: {{100 - account.percentage}}%">
|
||||||
{% if account.percentage > 50 %}
|
{% if account.percentage > 50 %}
|
||||||
{{account.difference|formatAmount}}
|
{{account.difference|formatAmountPlain}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user