mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 01:32:31 +02:00
* Initial testing of paplink functionality. More fancy interfaces coming. * Removed a invalid view reference. * Added a link on the front page. * Fixed some bad references and incorrect in game browser header usages. * Started work on statistics-pages. * Added an initial modify-paplink page where the pap itself can be deleted and characters removed. * Added a very simple statistics page. Also some name change for ~reasons~. * Small but crucial fix of syntax. * Added personal statistics page. * Corputils page now include fatlinkstats. * Added link to the personal statistics page. Moved other buttons for clarity. * Removed some unused code and imports * Added more statistics, and all corps in alliance are now visible even if no paps are registered. * Now requesting trust for the right domain. And some redundant imports and commented lines are removed.
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% extends "public/base.html" %}
|
|
{% load bootstrap %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
{% block page_title %}Personal fatlink statistics{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">Participation data statistics for {{ year }}
|
|
<div class="text-right">
|
|
<a href="{% url 'auth_fatlink_view_personal_statistics' previous_year %}">
|
|
<button type="button" class="btn btn-info">Previous year</button>
|
|
</a>
|
|
{% if next_year %}
|
|
<a href="{% url 'auth_fatlink_view_personal_statistics' next_year %}">
|
|
<button type="button" class="btn btn-info">Next year</button>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</h1>
|
|
<table class="table table-responsive table-bordered">
|
|
<tr>
|
|
<th class="col-md-2 text-center">Month</th>
|
|
<th class="col-md-2 text-center">Fats</th>
|
|
</tr>
|
|
{% for month, n_fats in monthlystats.items %}
|
|
<tr>
|
|
<td class="text-center">{{ month }}</td>
|
|
<td class="text-center">{{ n_fats }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<script src="/static/js/dateformat.js"></script>
|
|
|
|
{% endblock content %}
|