{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block body %} {% if can_add %} Nový soutěžící {% endif %}

Soutěžící

{% if filter_errors %} {% endif %}
Účast v kole:
{{ wtf.form_field(filter.round_year) }}
{{ wtf.form_field(filter.round_category) }}
{{ wtf.form_field(filter.round_seq) }}
{{ wtf.form_field(filter.contest_site_code, placeholder='Kód / #ID') }}
{{ wtf.form_field(filter.participation_state) }}
Registrace:
{{ wtf.form_field(filter.year) }}
{{ wtf.form_field(filter.school_code, placeholder='Kód / #ID') }}
{{ wtf.form_field(filter.submit, class='btn btn-primary') }} {% if filter.offset.data > 0 %} {{ wtf.form_field(filter.previous) }} {% else %} {% endif %} {% if count > filter.offset.data + filter.limit.data %} {{ wtf.form_field(filter.next) }} {% else %} {% endif %} {% set max = filter.offset.data + filter.limit.data if filter.offset.data + filter.limit.data < count else count %}

Zobrazuji záznamy {{filter.offset.data + 1}}{{ max }} z {{count}} nalezených soutěžících.
{% if users %} {% for user in users %} {% endfor %}
JménoPříjmeníE-mailAkce
{{ user.first_name }}{{ user.last_name }} {{ user.email }}{% if user.password_hash == None %} *{% endif %}
Detail {% if can_edit %} Edit {% endif %}
{% else %} Zadanému filtru nevyhovují žádní soutěžící. {% endif %} {% endblock %}