{{ error }}

{{ team.name }}

{{ team.division.name }} Division - {{ team.season.name }}
{{ team.stats.games_played }} Games Played
{{ team.stats.wins }}-{{ team.stats.losses }}{{ team.stats.ties ? '-' + team.stats.ties : '' }}
{{ team.stats.points }} Points

Team Statistics

{{ team.stats.games_played }}
Games Played
{{ team.stats.wins }}
Wins
{{ team.stats.ot_wins }}
OT Wins
{{ team.stats.losses }}
Losses
{{ team.stats.ot_losses }}
OT Losses
{{ team.stats.ties }}
Ties
{{ team.stats.points }}
Points
{{ team.stats.goals_for }}
Goals For
{{ team.stats.goals_against }}
Goals Against
{{ team.stats.goal_differential > 0 ? '+' : '' }}{{ team.stats.goal_differential }}
Goal Differential
{{ (team.stats.goals_for / team.stats.games_played).toFixed(2) }}
Goals/Game
{{ (team.stats.goals_against / team.stats.games_played).toFixed(2) }}
GA/Game
{{ ((team.stats.wins + (team.stats.ot_wins * 0.66) + (team.stats.ot_losses * 0.33)) / team.stats.games_played * 100).toFixed(1) }}%
Win %

Schedule

  • {{ new Date(game.raw_start_datetime).toLocaleDateString('en-US', {month: 'numeric', day: 'numeric', year: 'numeric'}) }}
    {{ new Date(game.raw_start_datetime).toLocaleTimeString('en-US', {hour: 'numeric', minute: '2-digit', hour12: true}) }} @ {{ (game.location && game.location.name) || game.location || 'TBD' }}
    vs @ {{ game.opponent.name }}
    {{ game.status === 'completed' ? game.result : 'Upcoming' }}

Roster

Skaters (showing skater stats only)

Player GP G A PTS PIM
{{ getPlayerInitials(player.name) }}
{{ player.name }} #{{ player.jersey_number }} {{ player.status }}
{{ player.skater_games_played }} {{ player.goals }} {{ player.assists }} {{ player.points }} {{ player.penalty_minutes }}

Goalies (showing goalie stats only)

Goalie GP GA W L SO GAA
{{ getPlayerInitials(player.name) }}
{{ player.name }} #{{ player.jersey_number }} {{ player.status }}
{{ player.goalie_games_played || 0 }} {{ player.goals_against || 0 }} {{ player.wins || 0 }} {{ player.losses || 0 }} {{ player.shutouts || 0 }} {{ player.gaa || '0.00' }}