{% extends "base.html" %} {% block "content" %} {% 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 }}

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
{% endblock %}