{{ chart_data.title }}

{% if chart_data.statistics|length > 1 %} {% for item_label, statistics in zip("abcde", chart_data.statistics) %}
{{ statistics.tag.tag_name }}
{% endfor %} {% endif %}
{% for tag_stats in chart_data.statistics %} {% if tag_stats.all_time_total > 0 %}
{{ tag_stats.tag.tag_name }}

Average Monthly Expenditure

${{ tag_stats.all_time_average|currency }}
Past year: ${{ tag_stats.past_year_average|currency }}

Lifetime Expenditure

${{ tag_stats.all_time_total|currency }}
Past year: ${{ tag_stats.past_year_total|currency }}
{% endif %} {% endfor %}