{% extends "base.html" %} {% block title %}NHL Scrabble Analyzer - Conference 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 }}

Conference Standings by Total Scrabble Score

{% for conference, teams in conference_standings.items() %}

{{ conference }}

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