{% extends "base.html" %} {% block title %}{{ team.name }} — Solitaire Hockey{% endblock %} {% block content %}
| Player | GP | G | A | PTS | SOG | S% | PPG | SHG | PIM |
|---|---|---|---|---|---|---|---|---|---|
| {{ p.player_name }} | {{ p.gp }} | {{ p.goals }} | {{ p.assists }} | {{ p.points }} | {{ p.shots }} | {{ p.shoot_pct }}% | {{ p.pp_goals }} | {{ p.sh_goals }} | {{ p.pim }} |
No skater stats recorded yet.
{% endif %}| Player | GP | W | L | T | SA | GA | GAA | SV% |
|---|---|---|---|---|---|---|---|---|
| {{ g.player_name }} | {{ g.gp }} | {{ g.wins }} | {{ g.losses }} | {{ g.ties }} | {{ g.sa }} | {{ g.ga }} | {{ "%.2f"|format(g.gaa) if g.gaa else '—' }} | {{ "%.3f"|format(g.sv_pct) if g.sv_pct else '—' }} |
No goalie stats recorded yet.
{% endif %}