{% if tournament %}
🎯 Shooting Tournament
{{ tournament.total_players }} players • {{ tournament.total_rounds }} rounds {% if tournament.current_round %} Currently on Round {{ tournament.current_round }} {% endif %}
{% if tournament.current_round %}
Round {{ tournament.current_round }} of {{ tournament.total_rounds }}
{% endif %}
{% for round in tournament.rounds %} {% set is_current = tournament.current_round == round.round_number %} {% set is_completed = tournament.current_round > round.round_number %}
Round {{ round.round_number }}
{% if is_current %}
Current
{% elif is_completed %}
Done
{% else %}
Wait
{% endif %}
Time:
Completed:
{% for position in range(1, 7) %} {% set player = round.players[position-1] if position <= round.players|length else none %}
{{ position }}
{% if player %}
{{ player.name }}
ID: {{ player.id }}
{% else %}
Empty
{% endif %}
{% endfor %}
{% endfor %}
{% else %}

No Active Tournament

Go to Tournament Management to set up players and start a tournament.

🏆 Set Up Tournament
{% endif %}