Kontostand auf Konto-seite hinzugefuegt.
This commit is contained in:
parent
c2d144ea91
commit
86a9ecd598
|
@ -1,6 +1,11 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block "content" %}
|
{% block "content" %}
|
||||||
|
{% if user.get_profile.balance > 0 %}
|
||||||
|
<h3>Dein Kontostand: {{ user.get_profile.balance|floatformat:2 }}</h3>
|
||||||
|
{% else %}
|
||||||
|
<h3><font color="red">Dein Kontostand: {{ user.get_profile.balance|floatformat:2 }}</font></h3>
|
||||||
|
{% endif %}
|
||||||
{% if transacted %}
|
{% if transacted %}
|
||||||
{% if error %}
|
{% if error %}
|
||||||
<font color="red"><h1>Es ist beim Aufladen ein Fehler aufgetreten.</h1></font>
|
<font color="red"><h1>Es ist beim Aufladen ein Fehler aufgetreten.</h1></font>
|
||||||
|
|
Loading…
Reference in New Issue