{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Tour' %}: {{ tour.get_title }} / {{ block.super }}{% endblock title %} {% block content %}
{% blocktrans with tour=tour.get_title %}Tour "{{ tour }}" ended{% endblocktrans %}. {% if tour.winning_coalition %} {% blocktrans with coal=tour.get_winning_coalition_display %}{{ coal }} victory{% endblocktrans %}. {% endif %}
{% trans 'Dominance' context 'tour' %}
{% trans 'Won missions' context 'tour' %}
{% widthratio missions_wins.1 missions_wins_total 100 as width %}
{{ missions_wins.1 }}
{{ missions_wins.2 }}
{% trans 'Shotdown aircraft' context 'tour' %}
{% widthratio summary_coal.1.ak_total summary_total.ak_total 100 as width %}
{{ summary_coal.1.ak_total }}
{{ summary_coal.2.ak_total }}
{% trans 'Ground targets destroyed' context 'tour' %}
{% widthratio summary_coal.1.gk_total summary_total.gk_total 100 as width %}
{{ summary_coal.1.gk_total }}
{{ summary_coal.2.gk_total }}
{% trans 'Score' context 'tour' %}
{% widthratio summary_coal.1.score summary_total.score 100 as width %}
{{ summary_coal.1.score }}
{{ summary_coal.2.score }}
{% trans 'Flight time (hours)' context 'tour' %} {# Налет#}
{% widthratio summary_coal.1.flight_time summary_total.flight_time 100 as width %}
{{ summary_coal.1.flight_time|seconds_to_time:'h' }}
{{ summary_coal.2.flight_time|seconds_to_time:'h' }}
{% if top_rating %}
{% trans 'Best pilots' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'rating' context 'tour_top' %}
{% for player in top_rating %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.rating_format }}
{% endfor %}
{% endif %} {% if top_streak %}
{% trans 'Best pilots streak' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_streak %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% endif %}
{% trans 'Coalitions' %}
{% trans 'Allies' context 'coalition' %}
{% trans 'Axis' context 'coalition' %}
{% if total_active_players %}
{% trans 'Active players' %}
{% trans 'total' context 'tour_active' %}
{{ total_active_players }}
{% widthratio coal_active_players.1 total_active_players 100 as width %}
{% widthratio coal_active_players.2 total_active_players 100 as width %}
{{ coal_active_players.1 }}
{{ coal_active_players.0 }}
{{ coal_active_players.2 }}
{% endif %}
{% endblock content %}