{% extends "base.html" %} {% block "content" %} {% if transacted %} YOU DID IT!. You transacted money! {% endif %}
{% csrf_token %} {{ form.as_table }}
{% for transaction in history %} {% if forloop.first and transacted %} {% endif %} [ {{ transaction.dateTime }} ] {{ transaction.amount|floatformat:2 }} Euronen, got that by {{ transaction.transactionType }} {% if transaction.checked %} ist eingegangen {% else %} noch nicht da {% endif %} {% if forloop.first and transacted %} {% endif %}
{% endfor %} {% endblock %}