{% extends "base.html" %} {% set round = contest.round %} {% set site_id = site.place_id if site else None %} {% block title %} {{ round.round_code() }}: {% if site %}soutěžní místo {{ site.name }}{% else %}{{ contest.place.name }}{% endif %} {% endblock %} {% block breadcrumbs %} {{ contest_breadcrumbs(round=round, contest=contest, site=site) }} {% endblock %} {% block body %}
Název{{ round.name }}
Oblast{{ contest.place.name }} {% if site %}
Soutěžní místo{{ site.name }} {% endif %} {% with state=contest.state %}
Stav{{ state.friendly_name() }} {% if round.state != RoundState.delegate %} (určeno nastavením kola) {% endif %} {% endwith %} {% with state=contest.ct_state() %}
Stav pro účastníky{{ state.friendly_name() }} {% endwith %}
Vaše role{% if g.user.is_admin %}správce{% elif roles %}{{ roles|join(", ") }}{% else %}–{% endif %} {% if group_contests|length > 1 %}
Soutěže ve skupině kol: {% for c in group_contests %} {% if c == contest %}{% else %}{% endif %} {{ c.round.round_code() }}: {% if site %}soutěžní místo {{ site.name }}{% else %}{{ contest.place.name }}{% endif %} {% if c == contest %} (tato soutěž){% else %}{% endif %}
{% endfor %} {% endif %}
Zadání {% if round.tasks_file %} {% if can_view_statement %} stáhnout {% else %} není dostupné {% endif %} {% else %} – {% endif %}
Seznam účastníků {% if can_view_submits and round.state != RoundState.preparing %} Odevzdaná řešení {% endif %} {% if not site %} {% if round.state in [RoundState.grading, RoundState.closed] %} Výsledky {% endif %} {% if round.state == RoundState.preparing and round.seq > 1 %} Postup z minulého kola {% endif %} {% if can_manage %} Importovat data {% endif %} {% if can_manage and not site %} Editovat nastavení {% endif %} {% if g.user.is_admin %} Historie {% endif %} {% endif %}
{% if not site %}

Soutěžní místa

{% if places_counts %} {% for (place, count) in places_counts %} {% endfor %}
MístoPočet účastníků
{{ place.name }} {{ count }}
Celkem {{ places_counts|sum(attribute=1) }}
{% else %} Žádní účastníci a žádná soutěžní místa. {% endif %} {% endif %}

Úlohy

{% if tasks %} {% for task in tasks %} {% endfor %}
Kód Název Odevzdaná řešení Maximum bodů Jednotlivé akce Dávkové operace
{{ task.code }} {{ task.name }} {{ task.sol_count }} {{ task.max_points|none_value('–') }}
{% if can_view_submits %} Odevzdaná řešení {% endif %} {% if not site and can_edit_points %} Zadat body {% endif %} {% if can_create_solutions %} Založit řešení {% endif %}
{% if can_view_submits %} Stáhnout ZIP {% endif %} {% if can_upload %} Nahrát ZIP {% endif %} {% if not site and can_edit_points %} Nahrát body {% endif %}
{% else %}

Zatím nebyly přidány žádné úlohy.

{% endif %} {% endblock %}