mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-12 10:06:21 +01:00
64 lines
2.7 KiB
HTML
64 lines
2.7 KiB
HTML
{% extends "allianceauth/base-bs5.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block page_title %}
|
|
{% translate "Fatlink Corp Statistics" %}
|
|
{% endblock page_title %}
|
|
|
|
{% block header_nav_brand %}
|
|
{% translate "Fleet Activity Tracking" %}
|
|
{% endblock header_nav_brand %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1 class="page-header text-center mb-3">
|
|
{% blocktranslate %}Participation data statistics for {{ month }}, {{ year }}{% endblocktranslate %}
|
|
</h1>
|
|
|
|
<div class="text-end mb-3">
|
|
<a href="{% url "fatlink:statistics_corp_month" corpid previous_month|date:"Y" previous_month|date:"m" %}" class="btn btn-info">{% translate "Previous month" %}</a>
|
|
|
|
{% if next_month %}
|
|
<a href="{% url "fatlink:statistics_corp_month" corpid next_month|date:"Y" next_month|date:"m" %}" class="btn btn-info">{% translate "Next month" %}</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if fatStats %}
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th scope="col" class="col-md-1"></th>
|
|
<th scope="col" class="col-md-2 text-center">{% translate "Main Character" %}</th>
|
|
<th scope="col" class="col-md-2 text-center">{% translate "Characters" %}</th>
|
|
<th scope="col" class="col-md-2 text-center">{% translate "Fats" %}</th>
|
|
<th scope="col" class="col-md-2 text-center">
|
|
{% translate "Average fats" %}
|
|
<i class="fa-solid fa-question" rel="tooltip" title="Fats / Characters"></i>
|
|
</th>
|
|
</tr>
|
|
{% for memberStat in fatStats %}
|
|
<tr>
|
|
<td>
|
|
<img src="{{ memberStat.mainchar.portrait_url_32 }}" class="ra-avatar img-responsive" alt="{{ memberStat.mainchar.character_name }}">
|
|
</td>
|
|
<td class="text-center">{{ memberStat.mainchar.character_name }}</td>
|
|
<td class="text-center">{{ memberStat.n_chars }}</td>
|
|
<td class="text-center">{{ memberStat.n_fats }}</td>
|
|
<td class="text-center">{{ memberStat.avg_fat }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block extra_javascript %}
|
|
<script>
|
|
$(document).ready(() => {
|
|
$("[rel=tooltip]").tooltip();
|
|
});
|
|
</script>
|
|
{% endblock extra_javascript %}
|