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

Vergangene Transaktionen:

{% for transaction in history %} {% if forloop.first and transacted %} {% endif %} [ {{ transaction.dateTime }} ] {{ transaction.amount|floatformat:2 }} € durch {{ transaction.transactionType }} {% if not transaction.transactionType.needsCheck or transaction.checked %} eingegangen {% else %} aber noch nicht bestätigt {% endif %} {% if forloop.first and transacted %} {% endif %}
{% endfor %}
{% endblock %}