{% 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 }}
{% if TFJM.PAYMENT_MANAGEMENT %}
{% trans 'price'|capfirst %}
{% if tournament.price %}{{ tournament.price }} €{% else %}{% trans "Free" %}{% endif %}
{% 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 of maximal syntheses submission for the second round'|capfirst %}
{{ tournament.syntheses_second_phase_limit }}
{% if TFJM.APP == "ETEAM" %}
{% trans 'date of maximal syntheses submission for the third round'|capfirst %}
{{ tournament.syntheses_third_phase_limit }}
{% endif %}
{% trans 'description'|capfirst %}
{{ tournament.description }}
{% if TFJM.ML_MANAGEMENT %}
{% trans 'To contact organizers' %}
{{ tournament.organizers_email }}
{% trans 'To contact juries' %}
{{ tournament.jurys_email }}
{% trans 'To contact valid teams' %}
{{ tournament.teams_email }}
{% endif %}
{% if user.registration.is_admin or user.registration in tournament.organizers.all %} {% endif %}

{% trans "Teams" %}

{% render_table teams %}
{% if TFJM.PAYMENT_MANAGEMENT %} {% if user.registration.is_admin or user.registration in tournament.organizers.all %}
{% trans "Access to payments list" %}
{% endif %} {% 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

The files accessible below may contain personal information. In compliance with European law and out of respect for the confidentiality of participants' data, you may only use this data for purposes strictly necessary to the organization of the tournament.

Moreover, it is your responsibility to delete these files once you no longer need them, especially at the end of the tournament.

{% endif %} {% endblock %}