You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
881 B

<table class='vysledkovka tabulka_oramovane_sloupce tabulka_s_uchycenym_radkem_a_sloupcem'>
<thead>
<tr>
<th>#</th>
<th>Jméno</th>
<th>R.</th>
<th>Odjakživa</th>
{% for c in vysledkovka.cisla_rocniku %}
<th><a href="{{ c.verejne_url }}">
{{c.rocnik.rocnik}}.{{ c.poradi }}</a></th>
{% endfor %}
<th>Celkem</th>
</tr>
</thead>
<tbody>
{% for rv in vysledkovka.radky_vysledkovky %}
<tr>
<td>{% autoescape off %}{{ rv.poradi }}{% endautoescape %}</td>
<th>
{% if rv.titul %}
{{ rv.titul }}<sup>MM</sup>
{% endif %}
{{ rv.resitel.osoba.plne_jmeno }}</th>
<td>{{ rv.rocnik_resitele }}</td>
<td>{{ rv.body_celkem_odjakziva }}</td>
{% for b in rv.body_cisla_seznam %}
<td>{{ b }}</td>
{% endfor %}
<td><b>{{ rv.body_rocnik }}</b></td>
</tr>
{% endfor %}
<tbody>
</table>