{% extends 'layout.html' %} {% block main_content %}

{{ account.name }}

{% include 'update_button.html' %}
Current balance{{ account.balance }}
Last updated{{ account.last_updated }}
Transactions
{% if records %}

Transactions

{% for record in records %} {% endfor %}
NameTypeAmountPosted
{{ record.name }} {{ record.type }} {{ record.amount }} {{ account.posted }}
{% else %}

This account does not have any transactions yet

{% endif %}

Want to upload your own transactions? Cool. Do it here.

{% endblock %}