{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Virtual Lifes' context 'pilot_vlifes' %} / {{ player.nickname }} / {{ block.super }}{% endblock title %} {% block nav_tabs %} {% include 'inline/pilot_tabs.html' %} {% endblock nav_tabs %} {% block content %} {% trans 'Virtual Lifes' context 'pilot_vlifes' %} {% trans 'pilot' %}: {{ player.nickname }} {% if vlifes %} {# #} {# #} {# #} {# #} {% for vlife in vlifes %} {# TODO get_sortie_url #} {% if vlife.is_dead %} {% elif vlife.is_captured %} {% elif vlife.is_bailout %} {% elif vlife.is_lost_aircraft %} {% elif vlife.is_in_flight %} {% elif vlife.is_landed %} {% endif %} {{ vlife.date_first_sortie|date:'d.m.Y' }} {% if vlife.date_last_sortie|date:'d.m.Y' != vlife.date_first_sortie|date:'d.m.Y' %} - {{ vlife.date_last_sortie|date:'d.m.Y' }} {% endif %} {# {{ vlife.date_last_sortie|time:'H:i' }}#} {# {{ vlife.sorties_total }}#} {{ vlife.flight_time|seconds_to_time }} {{ vlife.ak_total }} {{ vlife.gk_total }} {{ vlife.score }} {% endfor %} {% if vlifes.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 %}