🏒 NHL Scrabble Score Analysis

Generated: {{ timestamp }}

Total Players
{{ stats.total_players }}
Total Teams
{{ stats.total_teams }}
Average Score
{{ "%.1f"|format(stats.average_score) }}
Highest Score
{{ stats.highest_score }}

Top {{ top_n }} Players by Scrabble Score

{% for player in top_players %} {% endfor %}
Rank Player Team Score
{{ loop.index }} {{ player.full_name }} {{ player.team }} {{ player.full_score }}

Conference Standings

{% for conference in conferences %}

{{ conference.name }}

{% for team in conference.teams %} {% endfor %}
Rank Team Total Score Avg Score Status
{{ loop.index }} {{ team.abbrev }} {{ team.total }} {{ "%.2f"|format(team.avg) }} {% if team.in_playoffs %} {% else %} {% endif %}
{% endfor %}

Division Standings

{% for division in divisions %}

{{ division.name }}

{% for team in division.teams %} {% endfor %}
Rank Team Total Score Avg Score
{{ loop.index }} {{ team.abbrev }} {{ team.total }} {{ "%.2f"|format(team.avg) }}
{% endfor %}