{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}{% if user.is_admin %}Správce:{% else %}Organizátor:{% endif %} {{ 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í: | {{ user.last_login_at|timeformat }} {% if user.reset_at %} |
Reset hesla: | {{ user.reset_at|timeformat }}{% endif %} |
Poznámka: | {{ user.note }} |
Můžete přidělit jen roli, která je podmnožinou nějaké vaší role (včetně omezení na oblast, kolo, …).
Pokud roli omezíte na kategorii Z
bude fungovat pro všechny kategorie začínající na Z
.
{% if role_errors %}
Role | Oblast | Ročník | Kategorie | Kolo | Přidělil | Akce |
---|---|---|---|---|---|---|
{{ roles_by_type[role.role].name }} | {{ role.place.type_name() + ": " + role.place.name or '*' }} | {{ role.year or '*' }} | {{ role.category or '*' }} | {{ role.seq or '*' }} | {% if role.assigned_by_user %}{{ role.assigned_by_user|user_link }}{% else %}systém{% endif %} |
{% if can_assign_rights %}
{% endif %}
{% if g.user.is_admin %}
Historie
{% endif %}
|