{% extends "tournamentcontrol/competition/base.html" %} {% load i18n %} {% load common competition %} {% block body_class %}{{ block.super }} season-fixtures{% endblock %} {% block content %} {% trans "TBA" as tba context "abbreviation: to be advised" %} {% block heading %}
| {% 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" %} |
{% trans "No matches for this selection." %}
{% endfor %} {% endblock %} {% endblock %}