{% if participants %} {% if participants|length > 0 %}
🎉 Tournament Complete!
Congratulations to {{ participants[0].name }} for winning!
{% endif %}
{% for participant in participants %}
{{ 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 %}
{% else %}

No Results Available

Tournament results will appear here when scoring is complete.

{% endif %}
📊 Tournament Information
Total Participants: {{ participants|length if participants else 0 }}
Tournament ID: {{ results.tournament_id[:10] if results.tournament_id else 'Unknown' }}...
Created: {{ results.created_at[:10] if results.created_at else 'Unknown' }}
Status: Completed
{% if participants and participants|length > 0 %}
Highest Score: {{ participants[0].total_score }} points
Winner: {{ participants[0].name }}
{% endif %}