{% extends "allianceauth/base.html" %} {% load bootstrap %} {% load static %} {% load i18n %} {% block page_title %}{% translate "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 %}
{% translate "Ship" %} {% translate "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 %}
{% translate "Fleet" %} {% translate "Creator" %} {% translate "Eve Time" %} {% translate "Duration" %} {% translate "Edit" %}
{{ link.fleet }} {{ link.creator.username }} {{ link.fatdatetime }} {{ link.duration }}
{% endif %} {% endif %}
{% endblock content %}