34 lines
		
	
	
	
		
			831 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			831 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <table class='tabulka_oramovane_sloupce'>
 | |
| <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>
 |