lingo: include amounts in invoice popup in <span> (#10342)

This commit is contained in:
Frédéric Péters 2016-03-19 17:30:47 +01:00
parent bc5981fd4c
commit a9a334e1dd
1 changed files with 2 additions and 2 deletions

View File

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