{% extends "base.html" %} {% block "content" %} {% if transacted %} {% if error %} ARGHZ. U broakzt t3h formul4r! {% else %} YOU DID IT!. You transacted money! {% endif %} {% endif %}
{% csrf_token %} {{ form.as_table }}
{% for transaction in history %} {% if forloop.first and transacted %} {% endif %} [ {{ transaction.dateTime }} ] {{ transaction.amount|floatformat:2 }} Euronen durch: {{ transaction.transactionType }} {% if not transaction.transactionType.needsCheck or transaction.checked %} eingegangen {% else %} aber noch nicht bestaetigt {% endif %} {% if forloop.first and transacted %} {% endif %}
{% endfor %} {% endblock %}