{% extends 'allianceauth/base.html' %} {% load evelinks %} {% load filters %} {% load i18n %} {% block page_title %}{% trans 'Fleet Activity' %}{% endblock %} {% block content %}

{% include "imicusfat/menu.html" %}

{% trans "Statistics" %}

{% if msg %} {% endif %}

{% trans "Months" %}

{% trans "Only months with FAT data in the last 12 months are shown." %}

{% for char in charstats %} {% if forloop.first %}
{% else %}
{% endif %}
{% if char.1|length > 0 %} {% for key, value in char.1.items %} {% endfor %}
{% trans "Month" %} {% trans "FAT Count" %}
{{ key|month }} {{ value }}
{% else %} {% endif %}
{% endfor %}
{% if perms.imicusfat.stats_corp_own or perms.imicusfat.stats_corp_other %}

{% trans "Corporations (Click Alliance Name to See Corps)" %}

{% if perms.imicusfat.stats_corp_other %}
{% for key, value in data.items %}
{% for corp in value %} {% if forloop.first %} {% else %} {% endif %} {% endfor %}
{{ corp.1 }}
{% endfor %} {% elif perms.imicusfat.stats_corp_own %}
{{ data.0.1 }}
{% endif %}
{% endif %}
{% endblock %}