{% extends 'tournaments/base.html' %} {% block head_title %}{{ tournament.display_name }} : Informations{% endblock %} {% block first_title %}{{ tournament.event.display_name }}{% endblock %} {% block second_title %}{{ tournament.display_name }}{% endblock %} {% block title_link %}{% url 'tournament' tournament.id %}{% endblock %} {% block content %} {% load static %} {% load tz %} {% include 'tournaments/navigation_tournament.html' %}
{% if tournament.enable_online_registration and team %}

Votre équipe

{% if team.is_in_waiting_list >= 0 %} Tournoi complet, vous êtes en liste d'attente.
{% if team.is_in_waiting_list == 1 %} {{ team.is_in_waiting_list }} équipe en liste d'attente devant vous {% elif team.is_in_waiting_list > 1 %} {{ team.is_in_waiting_list }} équipes en liste d'attente devant vous {% elif team.is_in_waiting_list == 0 %} vous êtes la première équipe en liste d'attente. {% endif %}
{% endif %}
{% for player in team.players %}
{{ player.name }}
{% endfor %}

Inscrits le {{ team.local_registration_date }}

{% if tournament.is_unregistration_possible %}

{% for message in messages %}
{{ message }}
{% endfor %}
{% if team.is_in_waiting_list >= 0 %} Se retirer de la liste d'attente {% else %} Se désinscrire {% endif %}

{% endif %}
{% endif %}

{{ tournament.display_name }} {{ tournament.get_federal_age_category_display}}

{{ tournament.local_start_date_formatted }}
{{ tournament.day_duration_formatted }}
{{ tournament.court_count }} terrains

{{ tournament.event.club.name }}
{% if tournament.has_club_address %}
{{ tournament.event.club.address }}
{{ tournament.event.club.city_zipcode }}
{% endif %}

{% if tournament.event.creator %}

Organisateur
{{ tournament.event.creator.full_name }}

{% endif %} {% if tournament.information %}

Infos
{{ tournament.information|linebreaksbr|urlize }}

{% endif %} {% if tournament.enable_online_registration %}

Inscription en ligne
{% if tournament.options_online_registration %}
    {% for option in tournament.options_online_registration %}
  • {{ option }}
  • {% endfor %}
{% endif %}

{% if tournament.registration_count_display %}
{{ tournament.registration_count_display }}
{% else %}
Aucune équipe inscrite
{% endif %}

{{ tournament.get_online_registration_status.status_localized }}

{% endif %} {% if tournament.online_register_is_enabled and team is None %} {% if tournament.account_is_required is False or user.is_authenticated and user.is_active %} {% if player_register_check is None %}

S'inscrire

{% else %}

Vous ne pouvez pas vous inscrire à ce tournoi.
{% for reason in player_register_check %}
{{ reason }}
{% endfor %}

{% endif %} {% else %} {% for message in messages %}
{{ message }}
{% endfor %}

Connectez-vous !

Vous avez besoin d'un compte Padel Club pour pouvoir vous inscrire en ligne. Créer le tout de suite !

{% endif %} {% endif %}
{% endblock %}