{% extends 'tournaments/base.html' %} {% block head_title %} Mes tournois {% endblock %} {% block first_title %} Mes tournois {% endblock %} {% block second_title %} {{ user.first_name }} {{ user.last_name }} {% endblock %} {% block content %} {% include 'tournaments/navigation_base.html' %} {% load static %} {% load tz %}
{% if running_tournaments %}
{% for tournament in running_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %} {% if upcoming_tournaments %}
{% for tournament in upcoming_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %} {% if ended_tournaments %}
{% for tournament in ended_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %}
{% endif %}
{% endblock %}