{% extends 'base.html' %} {% load static i18n %} {% block menu %} {% include 'driver27/season/menu-pre.html' %} {% endblock %} {% block content %} {{ block.super }} {% for result in results %} {% endfor %}
{% trans 'Position' %} {% trans 'Driver' %} {% trans 'Team' %} {% trans 'Start' %}  
{% if result.retired or not result.finish %} Retired {% else %} {{ result.finish }} {% endif %} {% with driver=result.driver %} {{ driver }} {% endwith %} {% with team=result.team %} {{ team }} {% endwith %} {% if result.qualifying %} {{ result.qualifying }} {% else %} - {% endif %} {% if result.wildcard %} {% trans 'Wildcard' %} {% endif %} {% if result.is_fastest %} {% trans 'Fastest lap' %} {% endif %}
{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %}