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

Accounts

{% for account in accounts %} {% endfor %}
ID Description Accumulated Go to
{{ account.id }} {{ account.description }} {{ account.accumulated | round(precision=2) }} {{ account.description }}

Last month summary

Last transactions

{% for tx in transactions %} {% endfor %}
Description Date Amount Category
{{tx.description}} {{tx.tx_date}} {{tx.amount/100}} {% if tx.category %}{{categories[tx.category]}}{% endif %}
{% endblock body %}