{% extends "base.html" %} {% block title %}NHL Scrabble Analyzer - Team Standings{% endblock %} {% block content %}
{{ stats.total_teams }}
{{ stats.highest_team_score }}
{{ stats.highest_team }} ({{ stats.highest_team_name }})
{{ stats.total_players }}
{{ stats.highest_score }}
{{ stats.highest_player_name }}
| Rank | Team | Division | Conference | Total Score | Avg Score | Players |
|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ team.name }} | {{ team.division }} | {{ team.conference }} | {{ team.total_score }} | {{ team.avg_score|round(1) }} | {{ team.player_count }} |