{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% set contest = ctx.contest %} {% set ct_id = contest.contest_id %} {% set round = ctx.round %} {% set user = ctx.user %} {% block title %}{{ round.name }} {{ round.category }}: účastník {{ user.full_name() }}{% endblock %} {% block breadcrumbs %} {{ ctx.breadcrumbs() }} {% endblock %} {% block pretitle %}
Detail uživatele
{% endblock %} {% block body %}

Soutěž {{ contest.place.name_locative() }}

Účastníci Tabulka řešení {% if contest.state in [RoundState.grading, RoundState.closed] %} Výsledky {% endif %}
Stav účasti {% if contest.place != ctx.pion.place %} Soutěžní místo {% endif %} Škola Třída
{{ ctx.pion.state.friendly_name() }} {% if contest.place != ctx.pion.place %} {{ ctx.pion.place.name }} {% endif %} {{ pant.school_place.name }} {{ pant.grade }}
{% include "parts/org_submit_warning.html" %}

Odevzdané úlohy

{% with for_user=user, for_task=None, rows=task_sols, site_id=None %} {% include "parts/org_solution_table.html" %} {% endwith %} {% endblock %}