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.
68 lines
1.5 KiB
68 lines
1.5 KiB
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Tournois{% endblock %}
|
|
{% block first_title %}Padel Club{% endblock %}
|
|
{% block second_title %}
|
|
{% if club %}
|
|
{{ club.name }}
|
|
{% else %}
|
|
Tournois
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'tournaments/navigation_base.html' %}
|
|
|
|
{% if live or future %}
|
|
|
|
<div class="grid-x">
|
|
|
|
{% if live %}
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
|
|
<div class="bubble">
|
|
<label class="title">En cours</label>
|
|
|
|
{% for tournament in live %}
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% if future %}
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
|
|
<div class="bubble">
|
|
|
|
<label class="title">À venir</label>
|
|
|
|
{% for tournament in future %}
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if ended %}
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
|
|
<label class="title">Terminés</label>
|
|
|
|
{% for tournament in ended %}
|
|
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|