{% extends "base.html" %} {% block title %}Account {{account.account_name}}{% endblock title %} {% block body %}
{{account.account_name}}
+
{% for tx in transactions %} {% endfor %}
Description Date Amount Category
{{tx.description}} {{tx.transaction_timestamp}} {{tx.amount/100}} {{tx.category}}

Loaded {{n_txs}} transactions

{% endblock body %}