{% 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 %}All {{ position_type }} players in the NHL ranked by Scrabble score.{% endtrans %}
{{ position_stats.total_players }}
{{ position_stats.total_score }}
{{ position_stats.avg_score|round(1) }}
{{ position_stats.highest_player_score }}
{{ position_stats.highest_player_name | auto_link(entity_data) | safe }}
| {% 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 %}{{ position_type }} players are distributed across {{ team_count }} teams.{% endtrans %}
| {% trans %}Team{% endtrans %} | {% trans %}Player Count{% endtrans %} |
|---|---|
| {{ team_info.team | auto_link(entity_data) | safe }} | {{ team_info.count }} |