{% load afat %} {% load evelinks %} {% load i18n %}

{% blocktranslate %}Your monthly stats for {{ year }}{% endblocktranslate %}

{% translate "Only months with FAT data for the selected year are shown." %}
{% translate "Only characters that have FATs for the selected year are shown." %}

{% if charstats.total|length > 0 %}
{% translate "Total monthly FATs" %}

{% translate "This is the monthly total FAT count for all your characters combined." %}

{% for month, fatcount in charstats.total.items %} {% endfor %}
{% translate "Month" %} {% translate "FAT count" %}
{{ month|month_name }} {{ fatcount }}
{% blocktranslate %}Total FATs for {{ year }}{% endblocktranslate %} {{ charstats.total|sum_values }}
{% translate "Monthly FATs by character" %}
{% for character in charstats.characters %}
{% for month, fatcount in character.1.items %} {% endfor %}
{% translate "Month" %} {% translate "FAT count" %}
{{ month|month_name }} {{ fatcount }}
{% endfor %}
{% else %}

{% blocktranslate %}No FATs for {{ year }} for any of your characters …{% endblocktranslate %}

{% endif %}