{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}{{ round.name }} {{ round.round_code() }}{% endblock %} {% block breadcrumbs %} {{ contest_breadcrumbs(round=round) }} {% endblock %} {% block body %}
Parametry kola (nelze editovat)
Ročník{{ round.year }}
Kategorie{{ round.category }}
Pořadí{{ round.seq }} {% if round.part > 0 %}
Část{{ round.part_code() }}{% endif %}
Oblast{{ level_names[round.level] }}
Vaše role{% if g.user.is_admin %}správce{% elif roles %}{{ roles|join(", ") }}{% else %}–{% endif %} {% if group_rounds|length > 1 %}
Skupina kol: {% for r in group_rounds %} {% if r == round %}{{ r.name }} {{ r.round_code() }} (toto kolo)
{% else %}{{ r.name }} {{ r.round_code() }}
{% endif %} {% endfor %} {% endif %}
Základní nastavení
Název{{ round.name }}
Stav{{ round.state.friendly_name() }} {% with state=round.ct_state() %}
Stav pro účastníky{{ state.friendly_name() }} {% endwith %}
Termíny
Účastníci vidí zadání od{{ round.ct_tasks_start|time_and_timedelta }}
Účastníci odevzdávají do{{ round.ct_submit_end|time_and_timedelta }}
Dozor vidí zadání od{{ round.pr_tasks_start|time_and_timedelta }}
Dozor odevzdává do{{ round.pr_submit_end|time_and_timedelta }}
Zadání {% if round.tasks_file %} {% if can_view_statement %} stáhnout {% else %} není dostupné {% endif %} {% else %} – {% endif %}
Nastavení výsledkové listiny{% if round.is_subround() %} (přejato z {{ round.master.round_code() }}) {% endif %}
Výsledková listina{{ round.master.score_mode.friendly_name() }}
Hranice bodů pro vítěze{{ round.master.score_winner_limit|none_value(Markup('nenastaveno')) }}
Hranice bodů pro úspěšné řešitele{{ round.master.score_successful_limit|none_value(Markup('nenastaveno')) }}
Seznam účastníků {% if round.state in [RoundState.grading, RoundState.closed, RoundState.delegate] %} Výsledky {% endif %} {% if can_manage_contestants %} Importovat data {% endif %} {% if can_manage_round %} Editovat nastavení a termíny {% endif %} {% if round.has_messages %} Zprávičky {% endif %} {% if g.user.is_admin %} Historie {% endif %}

Soutěže

{% if contests_counts %} {% for (c, count) in contests_counts %}
Soutěžní oblast Stav Počet účastníků
{{ c.place.name }} {% with state=c.state %} {{ state.friendly_name() }} {% endwith %} {{ count }} {% endfor %}
Celkem {{ contests_counts|sum(attribute=1) }}
{% else %}

Zatím nebyly založeny v žádné oblasti. {% endif %} {% if can_add_contest %}

{{ form_add_contest.csrf_token() }} {{ wtf.form_field(form_add_contest.place_code) }} {{ wtf.form_field(form_add_contest.create_contest) }}
{% endif %}

Úlohy

{% if tasks %} {% for task in tasks %} {% endfor %}
Kód Název Odevzdaná řešení Maximum bodů {% if can_manage_round %}Akce{% endif %} {% if can_handle_submits or can_upload %}Dávkové operace{% endif %}
{{ task.code }} {{ task.name }} {{ task.sol_count }} {{ task.max_points|none_value('–') }} {% if can_manage_round %}
Editovat {% if task.sol_count == 0 %}
{{ form_delete_task.csrf_token() }}
{% endif %} {% if g.user.is_admin %} Historie {% endif %}
{% endif %} {% if can_handle_submits or can_upload %}
{% if can_handle_submits %} Stáhnout ZIP {% endif %} {% if can_upload %} Nahrát ZIP {% endif %} {% if can_upload %} Nahrát body {% endif %}
{% endif %}
{% else %}

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

{% endif %} {% if can_manage_round %} Nová úloha {% endif %} {% endblock %}