{% 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 '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 }}
{% if user.registration.isadmin or user.registration in tournament.organizers.all %} {% endif %}

{% trans "Teams" %}

{% render_table teams %}

{% trans "Pools" %}

{% render_table pools %}
{% if user.registration.is_admin %} {% endif %} {% trans "Add pool" as modal_title %} {% trans "Add" as modal_button %} {% url "participation:pool_create" as modal_action %} {% include "base_modal.html" with modal_id="addPool" %} {% endblock %} {% block extrajavascript %} {% endblock %}