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.
53 lines
1.3 KiB
53 lines
1.3 KiB
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Tournois{% endblock %}
|
|
{% block first_title %}Padel Club{% endblock %}
|
|
{% block second_title %}Tournois{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
{% if live or future %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
{% if live %}
|
|
|
|
<label class="title">En cours</label>
|
|
|
|
{% for tournament in live %}
|
|
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
|
|
{% endfor %} {% endif %}
|
|
|
|
{% if future %}
|
|
|
|
<label class="title top-margin20">A venir</label>
|
|
|
|
{% for tournament in future %}
|
|
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
|
|
{% endfor %} {% endif %}
|
|
</div>
|
|
</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 %}
|
|
|