where did all the rounding go?!

This commit is contained in:
Konrad Mohrfeldt 2010-11-10 00:29:10 +01:00
parent b43c1df865
commit 3bfcd4ead7
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -17,7 +17,7 @@
<h1>Kasse</h1>
{% if user.is_authenticated %}
{% include "main/navigation-login.html" %}
<span class="balance">Kontostand: {{ user.get_profile.balance }} €</span>
<span class="balance">Kontostand: {{ user.get_profile.balance|floatformat:2 }} €</span>
{% else %}
{% include "main/navigation.html" %}
{% endif %}