add the currency name to all the prices

This commit is contained in:
Andreas Zweili 2018-02-13 20:00:15 +01:00
parent 5b5f4dbc70
commit 9b31f2a20f
1 changed files with 2 additions and 2 deletions

View File

@ -28,12 +28,12 @@
{{ article.article.price_in_chf }}
{{ currency_name }}
</td>
<td scope="col">{{ article.position_price }}</td>
<td scope="col">{{ article.position_price }} {{ currency_name }}</td>
</tr>
{% endfor %}
<tr>
<td scope="col" colspan="7" class="text-right">
Total: {{ total }}
Total: {{ total }} {{ currency_name }}
</td>
</tr>
</table>