{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {#{% block title %}{{ block.super }}{% endblock title %}#} {% block content %}
{% trans 'Current Tour' %}: {{ tour.get_title }}
{% trans 'Best live pilots in the last mission' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for vlife in top_mission_streak %}
{{ forloop.counter }}
{{ vlife.profile.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=vlife.coal_pref %}
{{ vlife.score }}
{% endfor %}
{% trans 'Best living pilots' 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_current }}
{% endfor %}
{% trans 'Best ironmen' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_ironman %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% trans 'Best living fighter pilots in the last mission' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for vlife in top_mission_streak_light %}
{{ forloop.counter }}
{{ vlife.profile.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=vlife.coal_pref %}
{{ vlife.score }}
{% endfor %}
{% trans 'Best live fighter pilots' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_streak_light %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_current }}
{% endfor %}
{% trans 'Best fighter ironmen' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_ironman_light %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% trans 'Best living attacker pilots in the last mission' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for vlife in top_mission_streak_medium %}
{{ forloop.counter }}
{{ vlife.profile.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=vlife.coal_pref %}
{{ vlife.score }}
{% endfor %}
{% trans 'Best live attacker pilots' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_streak_medium %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_current }}
{% endfor %}
{% trans 'Best attacker ironmen' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_ironman_medium %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% trans 'Best living bomber pilots in the last mission' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for vlife in top_mission_streak_heavy %}
{{ forloop.counter }}
{{ vlife.profile.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=vlife.coal_pref %}
{{ vlife.score }}
{% endfor %}
{% trans 'Best live bomber pilots' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_streak_heavy %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_current }}
{% endfor %}
{% trans 'Best bomber ironmen' context 'tour_top' %}
#
{% trans 'pilot nickname' context 'tour_top' %}
{% trans 'score' context 'tour_top' %}
{% for player in top_ironman_heavy %}
{{ forloop.counter }}
{{ player.nickname }}
{% include 'inline/table_coal_pref_icon.html' with coal_pref=player.coal_pref %}
{{ player.score_streak_max }}
{% endfor %}
{% trans 'Coalitions' %}
{{ COAL_1_NAME }}
{{ COAL_2_NAME }}
{% if NEW_TOUR_BY_MONTH %}
{% trans 'Tour' %}: {{ tour.get_title }}
{% widthratio tour.days_passed tour.days_in_tour 100 as width %}
{% blocktrans trimmed count days=tour.days_left %} {{ days }} day left {% plural %} {{ days }} days left {% endblocktrans %}
{# #} {# {% trans 'Results of other tours' %}#} {# #}
{% endif %} {% 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 %} {% if total_online %}
{% trans 'Online' %}
{% trans 'pilots' context 'online' %}
{{ total_online }}
{% widthratio coal_1_online total_online 100 as width %}
{% widthratio coal_2_online total_online 100 as width %}
{{ coal_1_online }}
{{ coal_2_online }}
{% trans 'List of pilots online' %}
{% endif %}
{% endblock content %}