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

{% trans "Participation data statistics for" %} {{ month }}, {{ year }} {% if char_id %} {% endif %}

{% blocktrans %}{{ user }} has collected {{ n_fats }} links this month.{% endblocktrans %}

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

{% blocktrans %}{{ user }} has created {{ n_created_fats }} links this month.{% endblocktrans %}

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