{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Overall stats' %} / {{ block.super }}{% endblock title %} {% block content %}
{% trans 'Overall stats' %}
{% 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 }}
{% if summary_coal %}
{% 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' }}
{% endif %}
{% if top_rating %}
{% trans 'Best pilots' context 'overall' %}
#
{% 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_score %}
{% trans 'Best virtual lifes' context 'overall_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_streak_score %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% endif %}
{% if top_streak_ak %}
{% trans 'Best streak' context 'overall' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'streak' context 'overall' %}
{% for player in top_streak_ak %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.streak_max }}
{% endfor %}
{% endif %} {% if top_streak_gk %}
{% trans 'Best ground streak' context 'overall' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'streak' context 'overall' %}
{% for player in top_streak_gk %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.streak_ground_max }}
{% endfor %}
{% endif %}
{% blocktrans trimmed %} Attention! The same player can appear in the ranking several times (profiles from different tours) and this is expected behavior. {% endblocktrans %}
{% trans 'Coalitions' %}
{{ COAL_1_NAME }}
{{ COAL_2_NAME }}
{% endblock content %}