{% extends "base.html" %} {% block title %}Přístup pro organizátory{% endblock %} {% block body %} {% if overview %}

Moje soutěže

{% set curr = namespace(level=-1) %} {% for o in overview %} {% if curr.level != o.round.level %} {% set curr.level = o.round.level %} {% endif %} {% if o.contest %} {% set detail_url = url_for('org_contest', ct_id=o.contest.contest_id) %} {% elif o.place.level == 0 %} {% set detail_url = url_for('org_round', round_id=o.round.round_id) %} {% else %} {% set detail_url = url_for('org_round', round_id=o.round.round_id, hier_id=o.place.place_id) %} {% endif %}
ID Kategorie Kolo {{ o.round.get_level().name|capitalize }} Stav Statistiky Moje role Odkazy
{{ o.round.round_code() }} {{ o.round.category }} {{ o.round.name }} {% if o.contest %} {{ o.place.name }} {% else %} {{ o.place.name_locative() }} {% endif %} {% for s in o.contest_states %}{% if not loop.first %}
{% endif %}{{ s.friendly_name() }}{% endfor %}
{% if not o.contest %}{{ o.num_contests }}S / {% endif %} {{- o.num_active_pants }}U {%- if o.num_unconfirmed_pants %} / {{ o.num_unconfirmed_pants }}P{% endif %} {% for r in o.role_list %}{{ role_type_names[r] }}{% if not loop.last %}
{% endif %}{% endfor %}
Detail {% endfor %}
{% else %}

Momentálně neorganizujete žádnou soutěž. {% endif %}

Rychlé hledání

{% if g.user.is_admin %}
{% endif %} {% endblock %}