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.
 
 
 
 
 
 

29 lines
997 B

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