{% load i18n %} {% if future_matches or past_matches %}

{% trans "Season" %} {% now "Y" %}

{% for match in past_matches %}
{{match.season.league}} | {{ match.city }} {{ match.home_team.short_name }} {% if match.home_team_score != Null and match.away_team_score != Null %}{{ match.home_team_score }} : {{ match.away_team_score}} {% else %} -- : -- {% endif %} {{ match.away_team.short_name }} {{match.date}}
{% endfor %} {% for match in future_matches %} {% endfor %}
{% endif %}