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

{{ pool }}

{% trans "Tournament:" %}
{{ pool.tournament }}
{% trans "Round:" %}
{{ pool.get_round_display }}
{% trans "Letter:" %}
{{ pool.get_letter_display }}
{% trans "Teams:" %}
{% for participation in pool.participations.all %} {{ participation.team }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% trans "Juries:" %}
{{ pool.juries.all|join:", " }} {% trans "Add jurys" %}
{% trans "Defended solutions:" %}
{% for passage in pool.passages.all %} {{ passage.defender.team.trigram }} — {{ passage.get_solution_number_display }}{% if not forloop.last %}, {% endif %} {% endfor %} {% trans "Download all" %}
{% trans "Syntheses:" %}
{% trans "Download all" %}
{% trans "BigBlueButton link:" %}
{{ pool.bbb_url|urlize }}
{% trans "Ranking" %}
    {% for participation, note in notes %}
  • {{ participation.team }} : {{ note|floatformat }}
  • {% endfor %}
{% if user.registration.is_volunteer %} {% endif %}
{% if user.registration.is_volunteer %} {% endif %}

{% trans "Passages" %}

{% render_table passages %} {% trans "Add passage" as modal_title %} {% trans "Add" as modal_button %} {% url "participation:passage_create" pk=pool.pk as modal_action %} {% include "base_modal.html" with modal_id="addPassage" modal_button_type="success" %} {% 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" %} {% trans "Upload notes" as modal_title %} {% trans "Upload" as modal_button %} {% url "participation:pool_upload_notes" pk=pool.pk as modal_action %} {% include "base_modal.html" with modal_id="uploadNotes" modal_button_type="success" modal_enctype="multipart/form-data" %} {% endblock %} {% block extrajavascript %} {% endblock %}