{% extends 'wanderer_leaderboard/base.html' %} {% load i18n %} {% block page_title %}{% translate "Wanderer Leaderboard" %}{% endblock %} {% block header_nav_brand %} {% translate "Wanderer Leaderboard" %} {% endblock header_nav_brand %} {% block details %}

{% translate "Wanderer Leaderboard" %}

{% if not maps %}
{% blocktranslate %}No tracked maps configured. Add one in the Django admin (Wanderer Leaderboard → Tracked maps) with its slug or map id.{% endblocktranslate %}
{% else %}
{% if error %}
{{ error }}
{% endif %} {% if beyond_horizon %}
{% blocktranslate %}Wanderer's audit API only serves the last {{ horizon_months }} months of activity, so this month can't be shown.{% endblocktranslate %}
{% elif rows %}
{% for cat in categories %}{% endfor %} {% for cat in categories %} {% for label in action_labels %} {% endfor %} {% endfor %} {% for r in rows %} {% for group in r.metric_groups %} {% for value in group %} {{ value }} {% endfor %} {% endfor %} {% endfor %}
# {% translate "Contributor" %}{{ cat }}{% translate "Total" %}
{{ label }}
{{ r.rank }} {{ r.character_name }} {% if r.corporation_ticker %}[{{ r.corporation_ticker }}]{% endif %} {% if not r.is_linked %}{% translate "unlinked" %}{% endif %} {% if r.characters|length > 1 %}
{% for ch in r.characters %}{{ ch.name }} ({{ ch.total }}){% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}
{{ r.total }}

{% blocktranslate %}New / Upd / Del = created / updated / deleted. Total is the sum of all nine counts. Alt characters are rolled up to their Alliance Auth main; characters not registered in Auth show individually (unlinked). Sourced live from Wanderer's audit API.{% endblocktranslate %}

{% else %}
{% blocktranslate %}No contribution activity recorded for this selection and month.{% endblocktranslate %}
{% endif %} {% endif %}
{% endblock %} {% block extra_javascript %}{% endblock %} {% block extra_css %}{% endblock %} {% block extra_script %}{% endblock %}