{% extends 'tournaments/base.html' %} {% block head_title %} Mon Compte {% endblock %} {% block first_title %} Mon Compte Padel Club {% endblock %} {% block second_title %} {{ user.user_name }} {% endblock %} {% block content %} {% include 'tournaments/navigation_base.html' %} {% load static %} {% load tz %}

Vos tournois à venir

{% if upcoming_tournaments %} {% for tournament in upcoming_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% else %} Aucun tournoi à venir {% endif %}

Vos tournois en cours

{% if running_tournaments %} {% for tournament in running_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% else %} Aucun tournoi en cours {% endif %}

Vos tournois terminés

{% if ended_tournaments %} {% for tournament in ended_tournaments %} {% include 'tournaments/tournament_row.html' %} {% endfor %} {% else %} Aucun tournoi terminé {% endif %}
{% endblock %}