From 86a9ecd598e828bc6de1288202a75a8a7a9d58fb Mon Sep 17 00:00:00 2001 From: tkroenert Date: Mon, 31 Oct 2011 23:23:38 +0100 Subject: [PATCH] Kontostand auf Konto-seite hinzugefuegt. --- k4ever/transaction/templates/transaction/overview.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/k4ever/transaction/templates/transaction/overview.html b/k4ever/transaction/templates/transaction/overview.html index f202645..c8ec498 100644 --- a/k4ever/transaction/templates/transaction/overview.html +++ b/k4ever/transaction/templates/transaction/overview.html @@ -1,6 +1,11 @@ {% extends "base.html" %} {% block "content" %} + {% if user.get_profile.balance > 0 %} +

Dein Kontostand: {{ user.get_profile.balance|floatformat:2 }}

+ {% else %} +

Dein Kontostand: {{ user.get_profile.balance|floatformat:2 }}

+ {% endif %} {% if transacted %} {% if error %}

Es ist beim Aufladen ein Fehler aufgetreten.