{% extends "base.html" %} {% block title %}Index{% endblock title %} {% block body %}

Accounts

{% for account in accounts %} {{account.account_name}} {% endfor %}

Last transactions

{% for tx in transactions %} {% endfor %}
Description Date Amount Category
{{tx.description}} {{tx.transaction_timestamp}} {{tx.amount/100}} {{tx.category}}
{% endblock body %}