{% extends "base.html" %} {% block title %}{% trans %}NHL Scrabble Analyzer - {{ position_type }} Players{% endtrans %}{% endblock %} {% block og_title %}{{ position_type }} {% trans %}Players{% endtrans %}{% endblock %} {% block twitter_title %}{{ position_type }} {% trans %}Players{% endtrans %}{% endblock %} {% block content %}

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

{{ position_stats.total_players }}

{% trans %}Total Score{% endtrans %}

{{ position_stats.total_score }}

{% trans %}Average Score{% endtrans %}

{{ position_stats.avg_score|round(1) }}

{% trans %}Highest Player{% endtrans %}

{{ position_stats.highest_player_score }}

{{ position_stats.highest_player_name | auto_link(entity_data) | safe }}

{% trans %}All {{ position_type }} Players by Scrabble Score{% endtrans %}

{% for player in position_type_players %} {% endfor %}
{% trans %}Rank{% endtrans %} {% trans %}Player Name{% endtrans %} {% trans %}Position{% endtrans %} {% trans %}Team{% endtrans %} {% trans %}Score{% endtrans %}
{{ loop.index }} {{ (player.first_name ~ " " ~ player.last_name) | auto_link(entity_data) | safe }} {{ player.position }} {{ player.team | auto_link(entity_data) | safe }} {{ player.score }}

{% trans %}Team Distribution{% endtrans %}

{% trans %}{{ position_type }} players are distributed across {{ team_count }} teams.{% endtrans %}

{% for team_info in team_distribution %} {% endfor %}
{% trans %}Team{% endtrans %} {% trans %}Player Count{% endtrans %}
{{ team_info.team | auto_link(entity_data) | safe }} {{ team_info.count }}

{% trans %}← Back to All Positions{% endtrans %}

{% endblock %}