{% extends "base.html" %} {% load getconfig i18n django_tables2 %} {% block content %}

{{ tournament.name }}

{% trans 'organizers'|capfirst %}
{{ tournament.organizers.all|join:", " }}
{% trans 'size'|capfirst %}
{{ tournament.max_teams }}
{% trans 'place'|capfirst %}
{{ tournament.place }}
{% trans 'price'|capfirst %}
{% if tournament.price %}{{ tournament.price }} €{% else %}{% trans "Free" %}{% endif %}
{% trans 'remote'|capfirst %}
{{ tournament.remote|yesno }}
{% trans 'dates'|capfirst %}
{% trans "From" %} {{ tournament.date_start }} {% trans "to" %} {{ tournament.date_end }}
{% trans 'date of registration closing'|capfirst %}
{{ tournament.inscription_limit }}
{% trans 'date of maximal solution submission'|capfirst %}
{{ tournament.solution_limit }}
{% trans 'date of the random draw'|capfirst %}
{{ tournament.solutions_draw }}
{% trans 'date of maximal syntheses submission for the first round'|capfirst %}
{{ tournament.syntheses_first_phase_limit }}
{% trans 'date when solutions of round 2 are available'|capfirst %}
{{ tournament.solutions_available_second_phase }}
{% trans 'date of maximal syntheses submission for the second round'|capfirst %}
{{ tournament.syntheses_second_phase_limit }}
{% trans 'description'|capfirst %}
{{ tournament.description }}
{% trans 'To contact organizers' %}
{{ tournament.organizers_email }}
{% trans 'To contact juries' %}
{{ tournament.jurys_email }}
{% trans 'To contact valid teams' %}
{{ tournament.teams_email }}
{% if user.registration.is_admin or user.registration in tournament.organizers.all %} {% endif %}

{% trans "Teams" %}

{% render_table teams %}
{% if user.registration.is_admin or user.registration in tournament.organizers.all %}
{% trans "Access to payments list" %}
{% endif %} {% if pools.data %}

{% trans "Pools" %}

{% render_table pools %}
{% endif %} {% if notes %}
{% trans "Ranking" %}
{% if user.registration.is_admin or user.registration in tournament.organizers.all %} {% endif %}
{% endif %} {% if user.registration.is_admin or user.registration in tournament.organizers.all %}

{% trans "Files available for download" %}

IMPORTANT

Les fichiers accessibles ci-dessous peuvent contenir des informations personnelles. Par conformité avec le droit européen et par respect de la confidentialité des données des participant⋅es, vous ne devez utiliser ces données que dans un cadre strictement nécessaire en lien avec l'organisation du tournoi.

De plus, il est de votre responsabilité de supprimer ces fichiers une fois que vous n'en avez plus besoin, notamment à la fin du tournoi.

{% endif %} {% endblock %}