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

{{ title }}

{% trans 'juries'|capfirst %}
{{ pool.juries.all|join:", " }}
{% trans 'teams'|capfirst %}
{{ pool.teams.all|join:", " }}
{% trans 'round'|capfirst %}
{{ pool.round }}
{% trans 'tournament'|capfirst %}
{{ pool.tournament }}

{% trans "Solutions" %}

{% if pool.round == 2 %}
{% trans "Solutions will be available here for teams from:" %} {{ pool.tournament.date_solutions_2 }}
{% endif %}

{% trans "Syntheses" %}

{% trans "Templates for syntheses are available here:" %} PDFTEX
{% if user.organizes or not user.is_authenticated %} {% endif %}

{% trans "Pool list" %}
{% if user.organizes or not user.is_authenticated %}
{% trans "Give this link to juries to access this page (warning: should stay confidential and only given to juries of this pool):" %}
https://{{ request.get_host }}{% url "tournament:pool_detail" pk=pool.pk %}?extra_access_token={{ pool.extra_access_token }}
{% endif %} {% endblock %}