{% 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 }} {% 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í:{{ user.last_login_at|timeformat }} {% if user.reset_at %}
Reset hesla:{{ user.reset_at|timeformat }}{% endif %}
Poznámka:{{ user.note }}
{% if can_edit %}
Editovat {% if g.user.is_admin %} Historie {% endif %}
{% 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 rounds.count() %} {% for round in rounds %} {% endfor %}
RočníkKategorieKoloMístoStav účastiOdkazy
{{ round.contest.round.year }} {{ round.contest.round.category }} {{ round.contest.round.seq }} {{ round.contest.place.name }} {% if round.place_id != round.contest.place_id %}
(ale soutěží v {{ round.place.name }}) {% endif %}
{{ round.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 %}