{% load static %}
{{ year_code_display }} MLS Cup Playoffs
{{ year_code_display }} MLS Cup Playoffs
{% for round_group in rounds %}
{% if round_group.round == rounds|length %} Championship {% elif round_group.round == rounds|length|add:"-1" %} Semifinals {% else %} Round {{ round_group.round }} {% endif %}
{% for s in round_group.series %}
{% if s.label %}
{{ s.label }}
{% endif %} {# Home team row #}
{% if s.home_seed %}
{{ s.home_seed }}
{% endif %}
{{ s.home_abbrev|default:"TBD" }}
{% for score in s.home_scores %}
{{ score }}
{% endfor %}
{# Away team row #}
{% if s.away_seed %}
{{ s.away_seed }}
{% endif %}
{{ s.away_abbrev|default:"TBD" }}
{% for score in s.away_scores %}
{{ score }}
{% endfor %}
{% endfor %}
{% endfor %}