{% extends "public/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}Personal fatlink statistics{% endblock page_title %}
{% block content %}
{{ user }} has collected {{ n_fats }} links this month.
Ship |
Times used |
{% for ship, n_fats in shipStats %}
{{ ship }} |
{{ n_fats }} |
{% endfor %}
{% if created_fats %}
{{ user }} has created {{ n_created_fats }} links this month.
Name |
Creator |
Fleet |
Eve Time |
Duration |
Edit |
{% for link in created_fats %}
{{ link.name }} |
{{ link.creator.username }} |
{{ link.fleet }} |
{{ link.fatdatetime }} |
{{ link.duration }} |
|
{% endfor %}
{% endif %}
{% endblock content %}