{% 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 %}
{% for tournament in live %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %} {% if future %}
{% for tournament in future %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %} {% if ended %}
{% for tournament in ended %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %}
{% endblock %}