{% 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) {% elif can_manage and not site %} {% if state == RoundState.running %} {% elif state == RoundState.grading %} {% endif %} {% else %} {% 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 %} |
Místo | Počet účastníků |
---|---|
{{ place.name }} | {{ count }} |
Celkem | {{ places_counts|sum(attribute=1) }} |
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('–') }} |
Odevzdaná řešení
{% if not site and can_edit_points %}
Zadat body
{% endif %}
{% if can_create_solutions %}
Založit řešení
{% endif %}
|
Stáhnout ZIP
{% if can_upload %}
Nahrát ZIP
{% endif %}
{% if not site and can_edit_points %}
Nahrát body
{% endif %}
|
Zatím nebyly přidány žádné úlohy.
{% endif %} {% endblock %}