{% load i18n %} {% load common competition %} {% trans "TBA" as tba context "abbreviation: to be advised" %}
{% if day_matches %} {% for match in day_matches %} {% endfor %}
{% trans "Time" %} {% trans "Division" %} {% trans "Home" %} {% trans "Score" %} {% trans "Away" %} {% trans "Venue" %}
{{ match.datetime|time|default:tba }} {{ match.stage.division.short_title|default:match.stage.division.title }} {{ match.get_home_team.title }} {% if match.home_team_score is not None or match.away_team_score is not None %} {{ match.home_team_score|default_if_none:"" }} – {{ match.away_team_score|default_if_none:"" }} {% else %} {% trans "v" context "abbreviation: versus" %} {% endif %} {{ match.get_away_team.title }} {{ match.play_at.title|default:tba }} {% url application.name|add:":match" competition=competition.slug season=season.slug division=match.stage.division.slug match=match.pk as url1 %} {% url application.name|add:":match" season=season.slug division=match.stage.division.slug match=match.pk as url2 %} {% url application.name|add:":match" division=match.stage.division.slug match=match.pk as url3 %} {% trans "Detail" %}
{% else %}

{% trans "No matches for this selection." %}

{% endif %}