{% extends 'statistics/structure.html.twig' %} {% block pageContent %}

{{ championship.name }}

  • {{ '_COMPETITIONS_2_'|trans }}
{% if tables is defined %}
{{ '_SHOW_RANKING_'|trans }}
{% for year,table in tables %}
{% if not table.teams is empty %} {% for teamtable in table.teams %} {% if championship.id == 1 or (teamtable["points_total"] != '' and teamtable["points_total"] != '0.000') %} {% endif %} {% endfor %} {% else %} {{ '_NO_RESULTS_YET_'|trans }} {% endif %}
{% if not table.drivers is empty %} {% for drivertable in table.drivers %} {% if championship.id == 1 or (drivertable["points_total"] != '' and drivertable["points_total"] != '0.000') %} {% endif %} {% endfor %} {% else %} {{ '_NO_RESULTS_YET_'|trans }} {% endif %}
{% endfor %} {% endif %} {% endblock %}