{{ team.acronym || team.name.charAt(0) }}
{{ team.name }}
{{ team.stats.wins }}-{{ team.stats.losses }}{{ team.stats.ties ? '-' + team.stats.ties : '' }}
Record
{{ team.stats.points }}
Points
{{ team.stats.games_played }}
Games
Goal Song
Championships
Team Statistics
{{ team.stats.wins }}
-
{{ team.stats.losses }}
-
{{ team.stats.ties }}
Record
{{ team.stats.points }}
Points
{{ ((team.stats.wins + (team.stats.ot_wins || 0) * 0.66 + (team.stats.ot_losses || 0) * 0.33) / team.stats.games_played * 100).toFixed(0) }}%
Win %
{{ team.stats.games_played }}
Games
{{ team.stats.goals_for }}
Goals For
{{ team.stats.goals_against }}
Goals Against
{{ team.stats.goal_differential > 0 ? '+' : '' }}{{ team.stats.goal_differential }}
Diff
{{ team.stats.penalty_minutes }}
PIM
{{ team.stats.penalty_minutes_against }}
PIM Against
{{ (team.stats.goals_for / team.stats.games_played).toFixed(1) }}
GF/Game
{{ (team.stats.goals_against / team.stats.games_played).toFixed(1) }}
GA/Game
Scoring Timeline
P1
{{ timelinePeriodTotals[1].goals }}
{{ timelinePeriodTotals[1].penalties }}
P2
{{ timelinePeriodTotals[2].goals }}
{{ timelinePeriodTotals[2].penalties }}
P3
{{ timelinePeriodTotals[3].goals }}
{{ timelinePeriodTotals[3].penalties }}
OT
{{ timelinePeriodTotals.OT.goals }}
{{ timelinePeriodTotals.OT.penalties }}
SO
{{ timelinePeriodTotals.SO.goals }}
Goal
Penalty
Shootout Goal
Schedule
SubscribeNo games scheduled
-
{{ new Date(game.raw_start_datetime).toLocaleDateString('en-US', {month: 'short'}) }} {{ new Date(game.raw_start_datetime).getDate() }} {{ new Date(game.raw_start_datetime).getFullYear() }}{{ game.is_home ? 'VS' : '@' }}{{ game.result ? game.result.replace(/^[WLT]\s*/, '') : '-' }} {{ game.status === 'completed' ? (game.result ? game.result.charAt(0) : '-') : 'Upcoming' }}
Roster
Skaters (showing skater stats only)
| Player | GP | G | A | PTS | PPG | PIM |
|---|---|---|---|---|---|---|
|
{{ getPlayerInitials(player.name) }}
{{ player.name }}
#{{ player.jersey_number }}
{{ player.status }}
|
{{ player.skater_games_played || 0 }} | {{ player.goals || 0 }} | {{ player.assists || 0 }} | {{ player.points || 0 }} | {{ player.skater_games_played > 0 ? ((player.points || 0) / player.skater_games_played).toFixed(2) : '0.00' }} | {{ player.penalty_minutes || 0 }} |
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' }} |