{% extends "base.html" %} {% block title %}{% trans %}NHL Scrabble Analyzer - Nationality Standings{% endtrans %}{% endblock %} {% block content %}
{{ nationality_stats.total_nationalities }}
{{ nationality_stats.total_players }}
{{ nationality_stats.highest_nationality_score }}
{{ nationality_stats.highest_player_score }}
{{ nationality_stats.highest_player_name | auto_link(entity_data) | safe }}
| {% trans %}Rank{% endtrans %} | {% trans %}Nationality{% endtrans %} | {% trans %}Players{% endtrans %} | {% trans %}Total Score{% endtrans %} | {% trans %}Avg Score{% endtrans %} | {% trans %}Top Player{% endtrans %} |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ nationality_data.nationality | auto_link(entity_data) | safe }} | {{ nationality_data.player_count }} | {{ nationality_data.total_score }} | {{ nationality_data.avg_score|round(1) }} | {{ nationality_data.top_player_name | auto_link(entity_data) | safe }} |