{# templates/show.html #} Race details Back to index {% if not race %}

Could not find race details

{% else %} {% for lap in race.laps %} {% endfor%}
Runner name Lap time Category Notes
{{ lap.runner_name }} {{ lap.lap_time }} {%- if lap.category == 'cat1' %} Category 1 {%- elif lap.category == 'cat2' %} Category 2 {%- else %} Unknown {%- endif %} {{ lap.notes }}
{% endif %}