{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% set round = contest.round %} {% block title %} Seznam účastníků {% if site %}soutěžního místa {{ site.name }}{% else %}oblasti {{ contest.place.name }}{% endif %} {% endblock %} {% block breadcrumbs %} {{ contest_breadcrumbs(round=round, contest=contest, site=site, action="Seznam účastníků") }} {% endblock %} {% set id = contest.contest_id %} {% set site_id = site.place_id if site else None %} {% block body %}
{% if not site %} {{ wtf.form_field(filter.participation_place, placeholder='Kód', size=8) }} {% endif %} {{ wtf.form_field(filter.school, placeholder='Kód', size=8) }} {{ wtf.form_field(filter.participation_state) }}
{{ wtf.form_field(filter.submit, class='btn btn-primary') }} {% if table %} {% endif %}
{% if not site %}
{% endif %} Celkem {{count|inflected('nalezený účastník', 'nalezení účastníci', 'nalezených účastníků')}}.
{% if table %} {% include 'parts/org_participants_table_actions.html' %} {% else %} {% include 'parts/org_participants_emails.html' %} {% endif %} {% endblock %}