{% 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 %} {# #} {##} {# #} {% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}