Skip to content
Snippets Groups Projects
Select Git revision
  • b2eb347c5b4b5b8d835f5b4be607065454d36f88
  • master default protected
  • jiri-skrobanek/persistence
  • om-graphs
  • vk-dynamic
  • fs-succinct
  • pm-streaming
7 results

dynamic.tex

Blame
  • 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 %}