{% extends "base.html" %} {% block title %}NHL Scrabble Analyzer - Team Standings{% endblock %} {% block content %}

Total Teams

{{ stats.total_teams }}

Top Team

{{ stats.highest_team_score }}

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

Total Players

{{ stats.total_players }}

Highest Player

{{ stats.highest_score }}

{{ stats.highest_player_name }}

Team Standings by Total Scrabble Score

{% for team in team_standings %} {% endfor %}
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 }}
{% endblock %}