{% 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 }} |
| Ročník | Škola | Třída | Rok narození |
|---|---|---|---|
| {{ participant.year }} | {{ participant.school_place.name }} | {{ participant.grade }} | {{ participant.birth_year }} |
Žádná registrace v ročníku
{% endif %}| Ročník | Kategorie | Kolo | Místo | Stav účasti | Odkazy |
|---|---|---|---|---|---|
| {{ 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() }} |
Žádná účast v kole
{% endif %} {% endblock %}