{% extends "base.html" %} {% load getconfig i18n django_tables2 %} {% 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:" %} PDF -- TEX
{% if user.organizes %}
{% endif %}

{% trans "Pool list" %}
{% endblock %}