{% extends 'lib/base.html' %} {% load static %} {% block body %}

{% for sport, top_award in top_fastest_awards.items %}

{{ sport }}  

{% include "awards/velocity_table.html" %}
{% endfor %}

{% for sport, top_award in top_climb_awards.items %}

{{ sport }}  

{% include "awards/climb_table.html" %}
{% endfor %}

{{ info_text.general }}

{% endblock %}