{% extends "touchtechnology/admin/edit.html" %} {% load i18n common tz %} {% block content %}

{% trans "Live Stream" %}

{% csrf_token %} {{ formset.management_form }}

{% blocktrans %}Mark which matches on camera-equipped fields should be live streamed to YouTube.{% endblocktrans %}

{% timezone season.timezone %}
{% for form in formset.forms %} {% with match=form.instance %}
{{ form.id }}
{{ match.datetime|time }}
{{ match.stage.division.short_title|default:match.stage.division.title|htmlentities }}
{{ match.play_at.title|htmlentities }}
{{ match|safe }}
{{ form.live_stream }}
{% endwith %} {% endfor %}
{% endtimezone %}
 {% trans "Cancel" %}
{% endblock %}