{#
Here be a chart with the budget limits as well if relevant.
amount spent vs budget limit reps
over the entire period the amount spent would rise and the budget limit rep would be like a heart beat jumping up and down
needs to be two axes to work #}
{% if averageExpenses|length > 0 %}
{{ 'average_spending_per_account'|_ }}
{{ 'account'|_ }}
{{ 'spent_average'|_ }}
{{ 'total'|_ }}
{{ 'transaction_count'|_ }}
{% set totalCount = 0 %}
{% set totalSum = 0 %}
{% for row in averageExpenses %}
{% set totalCount = totalCount+ row.count %}
{% set totalSum = totalSum + row.sum %}
{% if loop.index > listLength %}