{% extends "base.html" %} {% block content %}

{{ account.name }}

Balance: {{ account.currency }} {{ account.balance }} Balance date: {{ balance_date_fmt }} Currency: {{ account.currency }} ID: {{ account.id }}

Transactions ({{ transactions | length }})

{% if transactions %} {% for txn in transactions %} {% endfor %}
Date Description Amount
{{ fmt_epoch(txn.posted) }} {{ txn.description }} {% if txn.payee and txn.payee != txn.description %}
{{ txn.payee }} {% endif %}
{{ txn.amount }}
{% else %}

No transactions cached for this account.

{% endif %}

← Back to accounts

{% endblock %}