{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Killboard' %} / {{ player.nickname }} / {{ block.super }}{% endblock title %} {% block nav_tabs %} {% include 'inline/pilot_tabs.html' %} {% endblock nav_tabs %} {% block content %} {% trans 'Killboard' %} {% trans 'pilot' %}: {{ player.nickname }} {% if killboard %} {% for k in killboard %} {{ forloop.counter }} {{ k.player.nickname }} {% include 'inline/table_coal_pref_icon.html' with coal_pref=k.player.coal_pref %} {{ k.won }} {{ k.lose }} {{ k.wl }} {% endfor %} {% endif %} {% if split_rankings %} {% if light_player_exists and medium_player_exists or light_player_exists and heavy_player_exists or medium_player_exists and heavy_player_exists %} {% if cls == 'all' %} {% else %} {% endif %} {% trans 'All' context 'persona' %} {% if cls != 'all' %} {% endif %} {% if light_player_exists %} {% if cls == 'light' %} {% else %} {% endif %} {% trans 'Fighter' context 'specialty' %} {% endif %} {% if cls != 'light' %} {% endif %} {% if medium_player_exists %} {% if cls == 'medium' %} {% else %} {% endif %} {% trans 'Attacker' context 'specialty' %} {% endif %} {% if cls != 'medium' %} {% endif %} {% if heavy_player_exists %} {% if cls == 'heavy' %} {% else %} {% endif %} {% trans 'Bomber' context 'specialty' %} {% endif %} {% if cls != 'heavy' %} {% endif %} {% endif %} {% endif %} {% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}