{% extends 'base.html' %} {{% load i18n staticfiles tz stats %} {% block title %}{% trans 'Mission' %} #{{ mission.id }} - {{ mission.name }} / {{ block.super }}{% endblock title %} {% block head %} {% endblock head %} {% block content %}
{% trans 'Mission' %} #{{ mission.id }} - {{ mission.name }} {#
#}
{% trans 'Start Date' context 'mission' %}: {{ mission.date_start }}
{% trans 'End Date' context 'mission' %}: {{ mission.date_end }}
{% trans 'Duration' context 'mission' %}: {{ mission.duration|seconds_to_time }}
{% if mission.winning_coalition %} {% trans 'Winning coalition' %}: {{ mission.get_winning_coalition_display }} {% if mission.win_reason == 'task' %} ({% trans 'Performed the task of the mission' %}) {% elif mission.win_reason == 'score' %} ({% trans 'Won by score' %}) {% endif %}
{% endif %} {% trans 'Pilots total' %}: {{ mission.pilots_total }}
{% 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 %}
{% trans 'Pilot Rankings' %}
{% if players %} {% endif %}
{% blocktrans trimmed %} Attention! Algorithms collection statistics IL2 stats differs from statistics in-game. As a consequence of these statistics will not coincide with the game. {% endblocktrans %}
{% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}