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

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

{{ stats.total_teams }}

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

{{ stats.highest_team_score }}

{{ stats.highest_team_name | auto_link(entity_data) | safe }}

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

{{ stats.lowest_team_score }}

{{ stats.lowest_team_name | auto_link(entity_data) | safe }}

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

{{ stats.total_players }}

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

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

{{ division }}

    {% for team in teams %}
  1. {{ (team.name ~ " (" ~ team.total_score ~ ")") | auto_link(entity_data) | safe }}
  2. {% endfor %}
{% endfor %}
{% endblock %}