{% extends "base.html" %} {% comment %} # This file is part of k4ever, a point-of-sale system # Contact............ # Website............ http://k4ever.someserver.de/ # Bug tracker........ http://k4ever.someserver.de/report # # Licensed under GNU Affero General Public License v3 or later {% endcomment %} {% 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.

{% else %}

Du hast Geld aufgeladen.

{% endif %} {% endif %}

Konto aufladen

{% csrf_token %} {{ form.as_table }}

Kontodaten:

Konto-Inhaber: Alexander Eichner
Konto-No.:: 3854536
BLZ: 20041155
Betreff: {{ user.username }}

Geld überweisen

{% if transacted %} {% if error %}

Beim überweisen ist ein Fehler aufgetreten..

{% else %}

Du hast Geld überwiesen.

{% endif %} {% endif %}
{% csrf_token %} {{ vform.as_table }}

Vergangene Transaktionen

{% for transaction in history %} {% endfor %}
Datum Uhrzeit Betrag Typ Status
{{ transaction.dateTime|date:"j. F Y" }} {{ transaction.dateTime|date:"H:i" }} Uhr {{ transaction.amount|floatformat:2 }}€ {{ transaction.transactionType }} {% if not transaction.transactionType.needsCheck or transaction.checked %} Zahlung eingegangen {% else %} Zahlungsbestätigung steht noch aus {% endif %}
Datum Uhrzeit Betrag Typ Status

Vergangene virtuelle Transaktionen

{% for transaction in vhistory %} {% endfor %}
Datum Uhrzeit Betrag Sender Typ Recipient Comment
{{ transaction.dateTime|date:"j. F Y" }} {{ transaction.dateTime|date:"H:i" }} Uhr {{ transaction.amount|floatformat:2 }}€ {{ transaction.user }} {{ transaction.recipient }} {{ transaction.comment }}
Datum Uhrzeit Betrag Sender Typ Recipient Comment
{% endblock %}