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