{% trans %}Total Players{% endtrans %}

{{ stats.total_players }}

{% trans %}Highest Score{% endtrans %}

{{ stats.highest_score }}

{{ stats.highest_player_name }} ({{ stats.highest_player_team }})

{% trans %}Average Score{% endtrans %}

{{ stats.avg_score|round(1) }}

{% trans %}Top Team{% endtrans %}

{{ stats.highest_team_score }}

{{ stats.highest_team }} ({{ stats.highest_team_name }})

{% trans %}Score Visualizations{% endtrans %}

{% trans %}Team Scores{% endtrans %}

{% trans %}Player Score Distribution{% endtrans %}

{% trans count=top_players|length %}Top {{ count }} Players by Scrabble Score{% endtrans %}

{% for player in top_players %} {% endfor %}
{% trans %}Rank{% endtrans %} {% trans %}Player Name{% endtrans %} {% trans %}Team{% endtrans %} {% trans %}Score{% endtrans %}
{{ loop.index }} {{ player.first_name }} {{ player.last_name }} {{ player.team }} {{ player.score }}

{% trans %}Team Standings by Total Scrabble Score{% endtrans %}

{% for team in team_standings %} {% endfor %}
{% trans %}Rank{% endtrans %} {% trans %}Team{% endtrans %} {% trans %}Division{% endtrans %} {% trans %}Conference{% endtrans %} {% trans %}Total Score{% endtrans %} {% trans %}Avg Score{% endtrans %} {% trans %}Players{% endtrans %}
{{ loop.index }} {{ team.name }} {{ team.division }} {{ team.conference }} {{ team.total_score }} {{ team.avg_score|round(1) }} {{ team.player_count }}

{% trans %}Division Standings{% endtrans %}

{% for division, teams in division_standings.items() %}

{{ division }}

    {% for team in teams[:5] %}
  1. {{ team.name }} ({{ team.total_score }})
  2. {% endfor %}
{% endfor %}