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.
32 lines
1.0 KiB
32 lines
1.0 KiB
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Matchs{% endblock %}
|
|
{% block first_title %}{{ tournament.event.display_name }}{% endblock %}
|
|
{% block second_title %}{{ tournament.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'tournaments/tournament_navigation.html' %}
|
|
|
|
{% if rounds or group_stages %}
|
|
<nav class="margin10 top-margin20">
|
|
<a href="{% url 'tournament' tournament.id %}" class="mybox">Tous les matchs</a>
|
|
{% for group_stage in group_stages %}
|
|
<a href="{% url 'tournament' tournament.id %}?group_stage={{ group_stage.id }}" class="mybox">{{ group_stage.name }}</a>
|
|
{% endfor %}
|
|
{% for round in rounds %}
|
|
<a href="{% url 'tournament' tournament.id %}?round={{ round.id }}" class="mybox">{{ round.name }}</a>
|
|
{% endfor %}
|
|
</nav>
|
|
{% endif %}
|
|
|
|
{% if matches %}
|
|
|
|
<div class="grid-x">
|
|
{% for match in matches %}
|
|
{% include 'tournaments/match_cell.html' %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|