{% extends "base.html" %} {% set round = contest.round %} {% set state = contest.state %} {% set ct_state = contest.ct_state() %} {% set can_manage = rights.have_right(Right.manage_contest) %} {% set can_upload_feedback = rights.can_upload_feedback() %} {% set can_upload_anything = rights.can_upload_feedback() or rights.can_upload_solutions() %} {% set can_edit_points = not site and rights.can_edit_points() %} {% set can_create_solutions = rights.can_create_solutions() %} {% set offer_view_statement = rights.offer_view_statement() %} {% set can_view_contestants = rights.have_right(Right.view_contestants) %} {% set can_view_submits = rights.have_right(Right.view_submits) %} {% block title %} {{ round.round_code() }}: {% if site %}soutěžní místo {{ site.name }}{% else %}{{ contest.place.name }}{% endif %} {% endblock %} {% block breadcrumbs %} {{ ctx.breadcrumbs() }} {% endblock %} {% block body %}
Název | {{ round.name }} |
Oblast | {{ contest.place.name }} {% if site %} |
Soutěžní místo | {{ site.name }} {% endif %} |
Stav | {{ state.friendly_name() }} {% if round.state != RoundState.delegate %} (určeno nastavením kola) {% endif %} |
Stav pro účastníky | {{ ct_state.friendly_name() }} |
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 offer_view_statement %} stáhnout {% else %} není dostupné {% endif %} {% else %} – {% endif %} {% if state in [RoundState.grading, RoundState.closed] %} |
Oficiální výsledková listina | {% if contest.scoretable %}Zveřejněna {% else %}zatím není{% endif %} {% endif %} |
Místo | Počet účastníků | Akce |
---|---|---|
{{ place.name }} | {{ count }} |
Detail
{% if can_manage %}
Přidat účastníka
{% endif %}
|
Celkem | {{ places_counts|sum(attribute=1) }} |
Žádní účastníci a žádná soutěžní místa.
{% endif %} {% endif %} {% if can_manage and not site %} {% endif %}Kód | Název | Typ | Odevzdáno | Max. bodů | Jednotlivé akce | Dávkové operace |
---|---|---|---|---|---|---|
{{ task.code }} | {{ task.name }} | {{ task.type.friendly_name() }} | {{ task.sol_count }} | {{ task.max_points|decimal|none_value('–') }} |
Odevzdaná řešení
{% if can_edit_points or can_create_solutions %}
{% if can_edit_points and can_create_solutions %}Zadat body / založit řešení
{%- elif can_create_solutions %}Založit řešení{% else %}Zadat body{% endif %}
{% endif %}
|
Stáhnout ZIP
{% if can_upload_solutions %}
Nahrát ZIP
{% endif %}
{% if can_edit_points %}
Nahrát body
{% endif %}
|
Zatím nebyly přidány žádné úlohy.
{% endif %} {% endblock %}