{% extends "base.html" %}
{% block "content" %}
{% for transaction in history %}
{{ transaction.amount }}, got that by {{ transaction.type }}
{% if transaction.checked %}
ist eingegangen
{% else %}
noch nicht da
{% endif %}
{% endfor %}
{% endblock %}