{% extends "base.html" %} {% block title %}NHL Scrabble Analyzer - Playoff Bracket{% endblock %} {% block content %}

Total Teams

{{ stats.total_teams }}

Playoff Teams

{{ playoff_teams_count }}

Top Seed

{{ stats.highest_team_score }}

{{ stats.highest_team }} ({{ stats.highest_team_name }})

Total Players

{{ stats.total_players }}

Playoff Bracket by Scrabble Score

{% for conference, teams in playoff_bracket.items() %}

{{ conference }} Conference

{% for team in teams %}
{% if team.seed_type == "division" %} {{ team.division_rank }} {% elif team.seed_type == "wildcard" %} WC {% else %} - {% endif %} {% if team.status_indicator %} {{ team.status_indicator }} {% endif %}
{{ team.abbrev }} {{ team.total }} (avg: {{ team.avg|round(1) }})
{% endfor %}
{% endfor %}
Legend:
{% endblock %}