{% set ns = namespace() -%}
{% include 'head.html' with context %}
AAC Statistics: {% if year %} {{ year }}{% endif %}{% if title %} {{ title | title }}{% endif %}
{% if results -%}
{%- set ns.total = 0 -%}
{%- if 'count' in results -%}
{%- set ns.total = results['count'] -%}
{%- endif -%}
Name |
Average position |
Sum of race positions |
Number of races |
{%- for row in results['rows'] -%}
{{ row.person }} |
{{ row.score }} |
{{ row.positions }} |
{{ row.races }} |
{%- endfor -%}
{%- endif %}