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