Tournament Results
Final Rankings & Scores
{{ participants|length }} Participants
{{ (participants|length * 40) if participants else 0 }} Total Shots
{% if participants and participants|length > 0 %}{{ participants[0].total_score }}{% else %}0{% endif %} Highest Score
{% if participants and participants|length >= 3 %}
🏆 Top 3 Winners
{% for i in range(3) %} {% set participant = participants[i] %}
{{ participant.rank }}
{% if participant.rank == 1 %}st {% elif participant.rank == 2 %}nd {% elif participant.rank == 3 %}rd {% else %}th {% endif %}
{% if participant.rank == 1 %}🥇 {% elif participant.rank == 2 %}🥈 {% elif participant.rank == 3 %}🥉 {% endif %}
{{ participant.name }}
ID: {{ participant.id }}
{{ participant.total_score }}
Points
{% endfor %}
{% endif %}

📊 Complete Rankings

{% for participant in participants %} {% endfor %}
Rank Participant ID Score Status
{{ participant.rank }} {% if participant.rank == 1 %}🥇 {% elif participant.rank == 2 %}🥈 {% elif participant.rank == 3 %}🥉 {% endif %} {{ participant.name }} {{ participant.id }} {{ participant.total_score }}