{% load static %} {% load compress %} World Series Racing {% compress css %} {% endcompress %}
{{ last_race_details.season_name }}
{{ last_race_details.race.circuit }}
{{ last_race_details.race.name }}
{% for stat in last_race_details.results %}
{{ stat.driver_name }}
{{ stat.pos_string }} position
{{ stat.score }} PTS
{% endfor %}
{% if last_race_details.race.finishing_position < 5 %}
WSR Admis en finale
{% else %}
WSR recalé
{% endif %}
{% for race in second_frame_races %}
{% if race.finishing_position == 1 %}
{{ race.pos_string }}
{% else %}
{{ race.pos_string }}
{% endif %}
{% if race.type == 'invitation' %}
Invitation évènement
{% elif race.type == 'championship' %}
Championnat
{% elif race.type == 'face_to_face' %}
Face à face
{% elif race.type == 'overtaking' %}
Dépasssements
{% elif race.type == 'against_time' %}
Course contre-la-montre
{% elif race.type == 'elimination' %}
Eliminations
{% elif race.type == 'endurance' %}
Endurance
{% else %}
Course simple
{% endif %}
{{ race.name }}
{% if race.type == 'championship' %}
3 manches
{% else %}
{{ race.circuit }}
{% endif %}
{% endfor %}

Actualité WSR

{% for article in six_last_articles %}
{{ article.title }}
{{ article.summary }}
{% endfor %}