Select Git revision
dynamic.tex
org_rounds.html 815 B
{% extends "base.html" %}
{% block title %}Soutěžní kola{% endblock %}
{% block body %}
<table class=data>
<thead><tr>
<th>ID
<th>Ročník
<th>Kat.
<th>Pořadí
<th>Oblast
<th>Název
<th>Stav
</thead>
{% for r in rounds %}
<tr>
<td><a href='{{ url_for('org_round', id=r.round_id) }}'>{{ r.round_code() }}</a>
<td>{{ r.year }}
<td>{{ r.category }}
<td>{{ r.seq }}{{ r.part_code() }}
<td>{{ r.get_level().name }}
<td>{{ r.name }}
<td class='rstate-{{r.state.name}}'>{{ r.state.friendly_name() }}
{% endfor %}
</table>
{% if history %}
<p><a class='btn btn-default' href='{{ url_for('org_rounds') }}'>Aktuální ročník</a>
{% else %}
<p><a class='btn btn-default' href='{{ url_for('org_rounds_history') }}'>Všechny ročníky</a>
{% endif %}
{% endblock %}