{% extends "base.html" %} {% block title %}Standings — Solitaire Hockey{% endblock %} {% block content %}
Select a season to view standings.
No team data found for this season. Make sure teams and team_seasons are populated.
| Team | GP | W | L | T | PTS | GF | GA | DIFF |
|---|---|---|---|---|---|---|---|---|
| {{ team.full_name }} | {{ team.gp or 0 }} | {{ team.wins or 0 }} | {{ team.losses or 0 }} | {{ team.ties or 0 }} | {{ team.points or 0 }} | {{ team.gf or 0 }} | {{ team.ga or 0 }} | {{ '+' if diff > 0 else '' }}{{ diff }} |