You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
{% 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 %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<h1 class="club my-block">Vos tournois à venir</h1 >
|
|
<div class="bubble">
|
|
{% if upcoming_tournaments %}
|
|
{% for tournament in upcoming_tournaments %}
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
{% endfor %}
|
|
{% else %}
|
|
Aucun tournoi à venir
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<h1 class="club my-block">Vos tournois en cours</h1 >
|
|
<div class="bubble">
|
|
{% if running_tournaments %}
|
|
{% for tournament in running_tournaments %}
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
{% endfor %}
|
|
{% else %}
|
|
Aucun tournoi en cours
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<h1 class="club my-block">Vos tournois terminés</h1 >
|
|
<div class="bubble">
|
|
{% if ended_tournaments %}
|
|
{% for tournament in ended_tournaments %}
|
|
{% include 'tournaments/tournament_row.html' %}
|
|
{% endfor %}
|
|
{% else %}
|
|
Aucun tournoi terminé
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|