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

{{ pool }}

{% trans "Tournament:" %}
{{ pool.tournament }}
{% trans "Round:" %}
{{ pool.get_round_display }}
{% trans "Teams:" %}
{% for participation in pool.participations.all %} {{ participation.team }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% trans "Juries:" %}
{{ pool.juries.all|join:", " }}
{% if user.registration.is_admin %} {% endif %}
{% trans "Update pool" as modal_title %} {% trans "Update" as modal_button %} {% url "participation:pool_update" pk=pool.pk as modal_action %} {% include "base_modal.html" with modal_id="updatePool" %} {% trans "Update teams" as modal_title %} {% trans "Update" as modal_button %} {% url "participation:pool_update_teams" pk=pool.pk as modal_action %} {% include "base_modal.html" with modal_id="updateTeams" %} {% endblock %} {% block extrajavascript %} {% endblock %}