{% extends "base.html" %} {% block title %}Historie účasti v MO{% endblock %} {% block body %}

Na této stránce najdete přehled všech ročníků a kol MO, kterých jste se účastnil(a), spolu s odevzdanými úlohami a jejich hodnocením. {% for year in years %}

Ročník {{ year }} ({{ year|mo_to_school_year }})

{% set pant = pants_by_year[year] %}

Škola: {{ pant.school_place.name }} (ročník {{ pant.grade }}) {% for c in contests_by_year[year] %} {% set r = c.round %} {% set state = c.ct_state() %} {% set allow_submit = state in [RoundState.running, RoundState.grading, RoundState.graded, RoundState.closed] %} {% set allow_feedback = state in [RoundState.graded, RoundState.closed] %}

{{ r.name }} kategorie {{ r.category }}{% if c.place.level > 0 %} ({{ c.place.name }}){% endif %}

{% if sols_by_round_id[r.round_id] %} {% for sol in sols_by_round_id[r.round_id] %}
Úloha Protokol Body
{{ sol.task.code }}: {{ sol.task.name }} {% if allow_feedback and sol.final_feedback is not none %} opravený {% elif allow_submit and sol.final_submit is not none %} odevzdaný {% else %} – {% endif %} {% if allow_feedback %} {{ sol|sol_display_points(user=True) }} {% endif %} {% endfor %}
{% else %}

Žádné odevzdané úlohy. {% endif %} {% if allow_feedback and c.scoretable_id is not none %}

Výsledková listina {% endif %} {% endfor %} {% if not contests_by_year[year] %}

Žádná účast v kolech. {% endif %} {% endfor %} {% if not years %}

Zatím se neúčastníte žádného ročníku MO. {% endif %} {% endblock %}