{% extends "base.html" %}
{% block title %}Index{% endblock title %}
{% block body %}
Accounts
| ID |
Description |
Accumulated |
Go to |
{% for account in accounts %}
| {{ account.id }} |
{{ account.description }} |
{{ account.accumulated | round(precision=2) }} |
{{ account.description }}
|
{% endfor %}
Last transactions
| Description |
Date |
Amount |
Category |
{% for tx in transactions %}
| {{tx.description}} |
{{tx.tx_date}} |
{{tx.amount/100}} |
{% if tx.category %}{{categories[tx.category]}}{% endif %} |
{% endfor %}
{% endblock body %}