{% extends "base.html" %} {% block title %}Organizátorské rozhraní{% endblock %} {% block body %} {% if contests %}

Moje soutěže

{% for c,role,r in contests %} {% set rr = gatekeeper.rights_for_contest(c) %} {% if c.state == RoundState.preparing %} {% elif c.state == RoundState.running %} {% elif c.state == RoundState.grading %} {% else %} {% endif %} {% endfor %}
Kategorie Kolo Stav Zadání Moje role Odkazy
{{ r.category }} {{ r.name }} {{ c.place.name_locativ() if c.place.level > 0 else '' }} {{ c.state.friendly_name() }} {% if rr.can_view_statement() %} stáhnout {% else %} {{ rr.cannot_view_statement_reason() }} {% endif %} {{ role_names[role] }} Detail Účastníci {% if rr.can_view_submits() and c.state != RoundState.preparing %} Odevzdaná řešení {% endif %} {% if (c.state == RoundState.grading and rr.can_view_submits()) or c.state == RoundState.closed %} Výsledky {% endif %} {% if rr.have_right(Right.manage_contest) and c.state != RoundState.closed %} + Přidat účastníka Import {% endif %}
{% endif %}

Různé

Rychlé hledání

{% if g.user.is_admin %}
{% endif %} {% endblock %}