{% extends 'tournaments/broadcast/broadcast_base.html' %} {% load static %} {% block head_title %}Broadcast{% endblock %} {% block first_title %}{{ club.name }}{% endblock %} {% block second_title %}Broadcast{% endblock %} {% block content %}
{% for tournament in tournaments %}
{{ tournament.formatted_start_date }}
{{ tournament.level }}
{{ tournament.category }}
{% if tournament.age %}
{{ tournament.age }}
{% endif %}
{{ tournament.creator }}
{{ tournament.private_label }}
{% if tournament.name_and_event %} {{ tournament.name_and_event }} {% endif %}
{% endfor %}
{% endblock %}