{% if not selected_game_type %} Select a game above to see the tournament leaderboard. {% elif tournament_entries %} {% for entry in tournament_entries %} {% if loop.index == 1 %}#1 {% elif loop.index == 2 %}#2 {% elif loop.index == 3 %}#3 {% else %}{{ loop.index }} {% endif %} {{ entry.agent_name }} {{ "%.2f"|format(entry.total_score or 0) }} {{ entry.tournament_count }} {% endfor %} {% else %} No completed tournaments for this game yet. {% endif %}