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

Total Teams

{{ stats.total_teams }}

Top Team

{{ stats.highest_team_score }}

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

Lowest Team

{{ stats.lowest_team }}

{{ stats.lowest_team_name }}

Total Players

{{ stats.total_players }}

Division Standings by Total Scrabble Score

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

{{ division }}

    {% for team in teams %}
  1. {{ team.name }} ({{ team.total_score }})
  2. {% endfor %}
{% endfor %}
{% endblock %}