{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}Účastník: {{ user.full_name() }}{% endblock %} {% block body %}
Jméno:{{ user.first_name }}
Příjmení:{{ user.last_name }}
E-mail:{{ user.email|mailto }} {% if user.is_admin %}
Správce:ano{% endif %} {% if user.is_org %}
Organizátor:ano{% endif %}
Účet založen:{{ user.created_at|timeformat }}
Poslední přihlášení:{% if user.last_login_at %}{{ user.last_login_at|timeformat }}{% else %}Zatím nepřihlášen{% endif %} {% if user.reset_at %}
Reset hesla:{{ user.reset_at|timeformat }}{% endif %}
Poznámka:{{ user.note }}
{% if can_edit %} Editovat {% endif %} {% if resend_invite_form %}
{{ resend_invite_form.csrf_token }}
{% endif %} {% if g.user.is_admin %} Historie {% endif %} {% if can_incarnate %}
{% endif %}

Registrace v ročnících

{% if participants.count() %} {% for participant in participants %} {% endfor %}
RočníkŠkolaTřídaRok narození
{{ participant.year }} {{ participant.school_place.name }} {{ participant.grade }} {{ participant.birth_year }}
{% else %}

Žádná registrace v ročníku

{% endif %}

Účast v kolech

{% if participations %} {% for (pion, contest, round) in participations %} {% endfor %}
RočníkKategorieKoloMístoStav účastiOdkazy
{{ round.year }} {{ round.category }} {{ round.seq }}{{ round.part_code() }} {{ contest.place.name }} {% if pion.place_id != contest.place_id %}
(soutěžní místo {{ pion.place.name }}) {% endif %}
{{ pion.state.friendly_name() }}
Odevzdané úlohy Stránka soutěže Stránka kola {% if g.user.is_admin %} Historie {% endif %}
{% else %}

Žádná účast v kole

{% endif %} {% endblock %}