Simulated Soccer Standings

Conference Tables with Home/Away Splits

{% if standings_by_conference %} {% for conference, teams in standings_by_conference.items %}

{{ conference }}

{% for team in teams %} {% endfor %}
Overall Home Away
Rank Team GP W D L Pts P/Gm GF GA GD GP W D L Pts P/Gm GF GA GD GP W D L Pts P/Gm GF GA GD
{{ forloop.counter }} {{ team.team_name }} {{ team.total.games_played }} {{ team.total.wins }} {{ team.total.draws }} {{ team.total.losses }} {{ team.total.points }} {{ team.total.points_per_game|floatformat:2}} {{ team.total.goals_for }} {{ team.total.goals_against }} {{ team.total.goal_diff }} {{ team.home.games_played }} {{ team.home.wins }} {{ team.home.draws }} {{ team.home.losses }} {{ team.home.points }} {{ team.home.points_per_game|floatformat:2 }} {{ team.home.goals_for }} {{ team.home.goals_against }} {{ team.home.goal_diff }} {{ team.away.games_played }} {{ team.away.wins }} {{ team.away.draws }} {{ team.away.losses }} {{ team.away.points }} {{ team.away.points_per_game|floatformat:2 }} {{ team.away.goals_for }} {{ team.away.goals_against }} {{ team.away.goal_diff }}
{% for team in teams %}

{{ team.team_name }}

{{ forloop.counter }}

Overall

GP{{ team.total.games_played }}
W{{ team.total.wins }}
D{{ team.total.draws }}
L{{ team.total.losses }}
Pts{{ team.total.points }}
P/Gm{{ team.total.points_per_game|floatformat:2 }}
GF{{ team.total.goals_for }}
GA{{ team.total.goals_against }}
GD{{ team.total.goal_diff }}

Home

GP{{ team.home.games_played }}
W{{ team.home.wins }}
D{{ team.home.draws }}
L{{ team.home.losses }}
Pts{{ team.home.points }}
P/Gm{{ team.home.points_per_game|floatformat:2 }}
GF{{ team.home.goals_for }}
GA{{ team.home.goals_against }}
GD{{ team.home.goal_diff }}

Away

GP{{ team.away.games_played }}
W{{ team.away.wins }}
D{{ team.away.draws }}
L{{ team.away.losses }}
Pts{{ team.away.points }}
P/Gm{{ team.away.points_per_game|floatformat:2 }}
GF{{ team.away.goals_for }}
GA{{ team.away.goals_against }}
GD{{ team.away.goal_diff }}
{% endfor %}
{% endfor %} {% else %}

No standings available for this season.

{% endif %}