{% load i18n static tz %}{% load common %}
{% blocktrans %}Daily Runsheet - {{ date }}{% endblocktrans %}
{% timezone season.timezone %}
{% trans "Run Sheet" %}
{{ date|date:"l, jS F Y" }}
{% trans "Time" %}
{% trans "Division" %}
{% trans "Place" %}
{% trans "Team 1" %}
{% trans "Team 2" %}
{% trans "Referees" %}
{% for match in object_list.playable %}
{% ifchanged match.datetime %}{{ match.datetime|time }}{% endifchanged %}
{{ match.stage.division.short_title|default:match.stage.division.title|htmlentities }}
{{ match.play_at.title|htmlentities }}
{{ match.get_home_team.title|htmlentities }} {% if match.home_team_score is not None %} ({{ match.home_team_score }}) {% endif %}
{{ match.get_away_team.title|htmlentities }} {% if match.away_team_score is not None %} ({{ match.away_team_score }}) {% endif %}
{% for ref in match.referees.all %}
{{ ref.person.first_name.0 }} {{ ref.person.last_name }}
{% endfor %}
{% block detail_link %}
{% endblock %} {% block referees_link %}
{% endblock %} {% if match.videos %}
{% if match.live_stream and user.is_superuser %}
{% endif %} {% endif %} {% if match.live_stream and not match.live_stream_bind %}
{% elif match.play_at.ground.live_stream and not match.live_stream %}
{% endif %}
{% endfor %}
{% endtimezone %}