{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% block page_title %} {% translate "Personal fatlink statistics" %} {% endblock page_title %} {% block header_nav_brand %} {% translate "Fleet Activity Tracking" %} {% endblock header_nav_brand %} {% block content %}

{% blocktranslate %}Participation data statistics for {{ month }}, {{ year }}{% endblocktranslate %}

{% if char_id %}
{% translate "Previous month" %} {% translate "Next month" %}
{% endif %}
{% blocktranslate count links=n_fats trimmed %} {{ user }} has collected one link this month. {% plural %} {{ user }} has collected {{ links }} links this month. {% endblocktranslate %}
{% for ship, n_fats in shipStats %} {% endfor %}
{% translate "Ship" %} {% translate "Times used" %}
{{ ship }} {{ n_fats }}
{% if created_fats %}
{% blocktranslate count links=n_created_fats trimmed %} {{ user }} has created one link this month. {% plural %} {{ user }} has created {{ links }} links this month. {% endblocktranslate %}
{% for link in created_fats %} {% endfor %}
{% translate "Fleet" %} {% translate "Creator" %} {% translate "EVE time" %} {% translate "Duration" %} {% translate "Edit" %}
{{ link.fleet }} {{ link.creator.username }} {{ link.fatdatetime }} {{ link.duration }}
{% endif %}
{% endblock content %}