{% 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 right_header %}
Téléchargez l'app pour organiser vos tournois !
{% endblock %} {% block content %} {% include 'tournaments/navigation_base.html' %}
{% if live or future %}
{% if live %} {% for tournament in live %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% if live|length >= 10 %}
{% if club %} Voir tous... {% else %} Voir tous... {% endif %}
{% endif %} {% endif %} {% if future %} {% for tournament in future %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% if future|length >= 10 %}
{% if club %} Voir tous... {% else %} Voir tous... {% endif %}
{% endif %} {% endif %}
{% endif %} {% if ended %}
{% for tournament in ended %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% if ended|length >= 10 %}
{% if club %} Voir tous... {% else %} Voir tous... {% endif %}
{% endif %}
{% endif %}
{% endblock %}