{% extends "base.html" %} {% block title %}Standings — Solitaire Hockey{% endblock %} {% block content %}

Standings

{% if not current_season %}

Select a season to view standings.

{% elif not standings %}

No team data found for this season. Make sure teams and team_seasons are populated.

{% else %} {% for conf in ['Eastern', 'Western'] %} {% if conf in standings %}

{{ conf }} Conference

{% for div in ['Atlantic','Northeast','Southeast','Central','Northwest','Pacific'] %} {% if div in standings[conf] %}
{{ div }} Division
{% set div_teams = standings[conf][div] | sort(attribute='points', reverse=True) %} {% for team in div_teams %} {% set diff = (team.gf or 0) - (team.ga or 0) %} {% endfor %}
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 }}
{% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}