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

{% trans %}Total Teams{% endtrans %}

{{ stats.total_teams }}

{% trans %}Top Team{% endtrans %}

{{ stats.highest_team_score }}

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

{% trans %}Lowest Team{% endtrans %}

{{ stats.lowest_team }}

{{ stats.lowest_team_name }}

{% trans %}Total Players{% endtrans %}

{{ stats.total_players }}

{% trans %}Conference Standings by Total Scrabble Score{% endtrans %}

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

{{ conference }}

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