{% 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 day in day_index %}

{{ day.date|date:"l, jS F Y" }} {{ day.count }}

{% if selected_day == day.date %} {% include day_template_names %} {% else %} {# each day's table loads separately — htmx swaps it in as the day scrolls into view; the link works without JavaScript #}
{% blocktrans count counter=day.count %}Show {{ counter }} match{% plural %}Show {{ counter }} matches{% endblocktrans %}
{% endif %}
{% empty %}

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

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