{% extends "allianceauth/base.html" %} {% load bootstrap %} {% load staticfiles %} {% load i18n %} {% block page_title %}{% trans "Personal fatlink statistics" %}{% endblock page_title %} {% block content %}

{% blocktrans %}Participation data statistics for {{ month }}, {{ year }}{% endblocktrans %} {% if char_id %} {% endif %}

{% blocktrans count links=n_fats trimmed %} {{ user }} has collected one link this month. {% plural %} {{ user }} has collected {{ links }} links this month. {% endblocktrans %}

{% for ship, n_fats in shipStats %} {% endfor %}
{% trans "Ship" %} {% trans "Times used" %}
{{ ship }} {{ n_fats }}
{% if created_fats %}

{% blocktrans count links=n_created_fats trimmed %} {{ user }} has created one link this month. {% plural %} {{ user }} has created {{ links }} links this month. {% endblocktrans %}

{% if created_fats %} {% for link in created_fats %} {% endfor %}
{% trans "Fleet" %} {% trans "Creator" %} {% trans "Eve Time" %} {% trans "Duration" %} {% trans "Edit" %}
{{ link.fleet }} {{ link.creator.username }} {{ link.fatdatetime }} {{ link.duration }}
{% endif %} {% endif %}
{% endblock content %}