{% extends "base.html" %} {% block header %} {# Show the setup name, as set in the config file, as page title. Don't escape HTML entities. #}

{{ setupname|safe }}

{{ super() }} {% endblock %} {% block main %}
List of 10 most recent transactions. {% for t in transactions %} {% endfor %}
Date Description Value Message
{{ t.receipt_date }} {{ t.receipt_description }} {{ t.receipt_value }} {{ t.receipt_message }}
{{ super() }} {% endblock %}