Skip to content
Snippets Groups Projects
Select Git revision
  • 245e6be8af4ae77bd2865091347b37a863b43e81
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

org_rounds.html

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