You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
860 B
24 lines
860 B
{% extends 'tournaments/broadcast_base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block head_title %}Broadcast{% endblock %}
|
|
{% block first_title %}{{ tournament.event.display_name }}{% endblock %}
|
|
{% block second_title %}Broadcast{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
<div><a href="{% url 'automatic-broadcast' tournament.id %}">Automatic</a></div>
|
|
<div><a href="{% url 'broadcasted-matches' tournament.id %}">Matchs</a></div>
|
|
<div><a href="{% url 'broadcasted-group-stages' tournament.id %}">Poules</a></div>
|
|
<div><a href="{% url 'broadcasted-summons' tournament.id %}">Convocations</a></div>
|
|
<div><a href="{% url 'broadcasted-rankings' tournament.id %}">Classement</a></div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|