{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
| id |
Date |
Ticker |
Exchange |
Currency |
FX |
Amount |
Tax Credit |
Fees |
Total |
Note |
|
{% for income in incomes %}
| {{ income.id }} |
{{ income.date_display }} |
{{ income.ticker }} |
{{ exchange_names[income.exchange] }} |
{{ income.currency }} {{ currency_icons[income.currency] }} |
{{ income.fx or '' }} |
{{ income.amount }} |
{{ income.imputation }} |
{{ income.fees }} |
{{ "{:,.2f}".format((income.amount + income.imputation - income.fees) | round(2)) }} |
{{ income.note or '' }} |
Edit |
{% endfor %}