{% extends "base.html" %} {% block title %}{% trans %}NHL Scrabble Analyzer - League 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 %}League Standings by Total Scrabble Score{% endtrans %}

{% trans %}National Hockey League{% endtrans %}

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