{% extends 'base.html' %} {% load static %} {% block title %}World Series Racing{% endblock %} {% block content %}
{{ last_race_details.season_name }}
{{ last_race_details.race.location }}
{{ last_race_details.race.circuit }}
{% 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.participation_type == 'invitation' %}
Invitation évènement
{% else %}
Participation
{% endif %}
{% if race.participation_type == 'invitation' %}
{{ race.type }}
{{ race.name }}
{{ race.location }}, {{ race.circuit }}
{% else %}
{{ race.type }}
{{ race.location }}
{{ race.circuit }}
{% endif %}
{% endfor %}

Actualité WSR

{% for article in six_last_articles %}
{{ article.title }}
{{ article.summary }}
{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}