{% 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 %}

{% block page_title %}{% trans season.competition.title %} - {% trans season.title %}{% endblock %}

{% trans "Fixtures & Results" %}

{% endblock %} {% block filters %}
{% trans "Reset to all" %}
{% endblock %} {% block summary %}
{{ match_count }} {% trans "matches" %} {{ team_count }} {% trans "teams" %}
{% endblock %} {% block fixtures %} {% for date, matches in matches_by_date.items %}

{{ date|date:"l, jS F Y" }} {{ matches|length }}

{% for match in 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" %}
{% empty %}

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

{% endfor %} {% endblock %} {% endblock %}