{% extends "base.html" %} {% block title %}Technical Turbulence - Competition Log{% endblock %} {% block content %}

Competition log


{% for season, comps in competitions_by_season.items() %}

{{ season }}

{% for comp in comps %}
{% if comp.image_path %}
{% endif %}

{{ comp.event_name }}

ยท

{{ comp.date }}

Description

{{ comp.description }}

{% if comp.awards %}

Awards

    {% for award in comp.awards.split('|') %}
  • {{ award }}
  • {% endfor %}
{% endif %}
{% endfor %} {% endfor %}
{% endblock %}