lingo: use two decimals in invoice popup (#10342)

This commit is contained in:
Frédéric Péters 2016-03-19 17:24:59 +01:00
parent 1f386fe2ff
commit 4a7d8e6e68
1 changed files with 2 additions and 2 deletions

View File

@ -14,13 +14,13 @@
{% endblocktrans %}
</h4>
<div class="total_amount">
{% blocktrans with amount=item.total_amount %}
{% blocktrans with amount=item.total_amount|floatformat:"2" %}
Total amount: {{ amount }}€
{% endblocktrans %}
</div>
{% if item.amount %}
<div class="amount">
{% blocktrans with amount=item.amount %}
{% blocktrans with amount=item.amount|floatformat:"2" %}
Amount to pay: {{ amount }}€
{% endblocktrans %}
</div>