{% for summary in summaries %}
{{ summary.holder.name }}
| Currency |
Total Amount In |
Total Amount Out |
Balance |
{% for currency_summary in summary.currencies %}
| {{ currency_summary.currency__code }} |
{{ currency_summary.total_in }} |
{{ currency_summary.total_out }} |
{{ currency_summary.balance|floatformat:2 }} |
{% endfor %}
{% endfor %}
Total Summary
| Currency |
Total Amount In |
Total Amount Out |
Total Balance |
{% for currency_code, total_summary in total_currency_summaries.items %}
| {{ currency_code }} |
{{ total_summary.total_in }} |
{{ total_summary.total_out }} |
{{ total_summary.total_balance|floatformat:2 }} |
{% endfor %}