{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {{ title }} | {% trans "Accounts" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}
{% include 'partials/form_fields.html' %}
{% if rows %}

Position at {{ report_date }}

{% for row in rows %} {% endfor %}
Account type Total balance Num accounts Expiring
< 30 days 30 - 60 days 60 - 90 days > 90 days No end date
{{ row.name }} {{ row.total|currency }} {{ row.num_accounts }} {{ row.total_expiring_within_30|currency }} ({{ row.num_expiring_within_30 }}) {{ row.total_expiring_within_60|currency }} ({{ row.num_expiring_within_60 }}) {{ row.total_expiring_within_90|currency }} ({{ row.num_expiring_within_90 }}) {{ row.total_expiring_outside_90|currency }} ({{ row.num_expiring_outside_90 }}) {{ row.total_open_ended|currency }} ({{ row.num_open_ended }})
{{ totals.total|currency }} {{ totals.num_accounts }}
{% endif %} {% endblock dashboard_content %}