{% extends 'base.html.twig' %} {% block title %}Standings - Sawnoff League{% endblock %} {% block body %}

League Standings

Current season rankings and team performance

{# Season Filter #} {% if seasons is not empty %}
{% endif %} {# Standings Table #} {% if selectedSeason %}

{{ selectedSeason.name }} Standings

{% if standings is not empty %}
{% for standing in standings %} {% endfor %}
# Team
MP Played
W Wins
D Draws
L Losses
PTS Points
{{ loop.index }}
{{ standing.team.name|slice(0, 1)|upper }}
{{ standing.team.name }}
{{ standing.matchesPlayed }} {{ standing.wins }} {{ standing.draws }} {{ standing.losses }} {{ standing.points }}
{% else %}
No standings data available

Standings will be calculated once matches are completed.

{% endif %}
{% else %}

No season selected

Please select a season to view standings.

{% endif %}
{% endblock %}