{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block body %}

Kolo {{ round.round_code() }} » Účastníci

{{ wtf.form_field(filter.contest_place, placeholder='Kód / #ID', size=8) }} {{ wtf.form_field(filter.participation_place, placeholder='Kód / #ID', size=8) }} {{ wtf.form_field(filter.school, placeholder='Kód / #ID', size=8) }} {{ wtf.form_field(filter.participation_state) }}
{{ wtf.form_field(filter.submit, class='btn btn-primary') }}
Stránka {{ filter.offset.data // filter.limit.data + 1}} z {{ (count / filter.limit.data)|round(0, 'ceil')|int }}:
{% 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 účastníků.

{% include 'parts/org_participants_table_actions.html' %}
Upozornění: Můžete editovat jen účastníky soutěžící v oblastech, ke kterým máte právo. {% endblock %}