{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Sorties' context 'pilot_sorties' %} / {{ player.nickname }} / {{ block.super }}{% endblock title %} {% block nav_tabs %} {% include 'inline/pilot_tabs.html' %} {% endblock nav_tabs %} {% block content %} {% trans 'Sorties' context 'pilot_sorties' %} {% trans 'pilot' context 'pilot_sorties' %}: {{ player.nickname }} {% if sorties %} {% for sortie in sorties %} {% ifchanged sortie.vlife_id %} {% if not forloop.first %}{% endif %} {% endifchanged %} {# TODO get_sortie_url #} {% if sortie.is_disco %} {% elif sortie.is_dead %} {% elif sortie.is_captured %} {% elif sortie.is_bailout %} {% elif sortie.is_lost_aircraft %} {% elif sortie.is_in_flight %} {% elif sortie.is_landed %} {% endif %} {{ sortie.date_start|date:'d.m.Y' }} {{ sortie.date_start|time:'H:i' }} {{ sortie.aircraft.name }} {{ sortie.mission.name }} {{ sortie.flight_time|seconds_to_time }} {{ sortie.ak_total }} {{ sortie.gk_total }} {{ sortie.score }} {% endfor %} {% if sorties.paginator.num_pages > 1 %} {% endif %} {% 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 %}