League Championship
Final Rankings - Best 5 of 6 Tournaments
{{ participants|length }} Participants
{{ league.total_tournaments }} Tournaments
{% if league.tournament_type == '40_targets' %}40{% else %}20{% endif %} Targets
{% if participants and participants|length > 0 %}{{ participants[0].final_score }}{% else %}0{% endif %} Highest Score
{% if participants and participants|length >= 3 %}
🏆 League Champions
{% 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 }}
{% if participant.joker_used %}
🃏 Joker Used
{% endif %}
{{ participant.final_score }}
Total: {{ participant.total_score }}
Final Score
{% endfor %}
{% endif %}

📊 Complete Tournament Breakdown & Final Calculation

{% for participant in participants %} {% for tournament_num in range(1, 7) %} {% endfor %} {% endfor %}
Rank Participant Individual Tournament Scores Final Score
(Best 5)
T1 T2 T3 T4 T5 T6
{{ participant.rank }} {% if participant.rank == 1 %}🏆 {% elif participant.rank == 2 %}🥈 {% elif participant.rank == 3 %}🥉 {% endif %}
{{ participant.name }}
{% set found_result = false %} {% for result in participant.tournament_results %} {% if result.tournament == tournament_num %} {% set found_result = true %} {% if result.get('joker') or not result.participated %} 🃏 {% else %} {% set all_scores = [] %} {% for r in participant.tournament_results if r.participated %} {% set _ = all_scores.append(r.score) %} {% endfor %} {% set sorted_scores = all_scores|sort(reverse=true) %} {% set excluded_score = sorted_scores[-1] if sorted_scores|length > 5 else none %} {% if all_scores|length > 5 and result.score == excluded_score %} {{ result.score }} {% else %} {{ result.score }} {% endif %} {% endif %} {% endif %} {% endfor %} {{ participant.final_score }}
📖 Scoring Legend:
Counted Score
Excluded (Worst)
Joker Used
Final Score (Best 5)
🔄 Updating...