66 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <table class='vysledkovka'>
 | |
|     <tr class='border-b'>
 | |
|         <th class='border-r'>#
 | |
|         <th class='border-r'>Jméno
 | |
|             {% for p in problemy %}
 | |
|                 <th class='border-r' id="problem{{ forloop.counter }}">{# <a href="{{ p.verejne_url }}"> #}{{ p.kod_v_rocniku }}{# </a> #}
 | |
| 
 | |
|                     {# TODELETE #}
 | |
|                     {% for podproblemy in podproblemy_iter.next %}
 | |
|                         <th class='border-r podproblem{{ forloop.parentloop.counter }} podproblem'>{# <a href="{{ podproblemy.verejne_url }}"> #}{{ podproblemy.kod_v_rocniku }}{# </a> #}
 | |
|                     {% endfor %}
 | |
|                 {# TODELETE #}
 | |
| 
 | |
|             {% endfor %}
 | |
|         {% if ostatni %}<th class='border-r'>Ostatní {% endif %}
 | |
| 
 | |
|         {# TODELETE #}
 | |
|         {% for podproblemy in podproblemy_iter.next %}
 | |
|             <th class='border-r podproblem{{ problemy.len }} podproblem'>{# <a href="{{ podproblemy.verejne_url }}"> #}{{ podproblemy.kod_v_rocniku }}{# </a> #}
 | |
|         {% endfor %}
 | |
|         {# TODELETE #}
 | |
| 
 | |
| 
 | |
|         <th class='border-r'>Za číslo
 | |
|         <th class='border-r'>Za ročník
 | |
|         <th class='border-r'>Odjakživa
 | |
|             {% 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 }}
 | |
|                         {% for b in rv.body_problemy_sezn %}
 | |
|                             <td class='border-r'>{{ b }}
 | |
| 
 | |
|                                 {# TODELETE #}
 | |
|                                 {% for body_podproblemu in rv.body_podproblemy_iter.next %}
 | |
|                                     <td class='border-r podproblem{{ forloop.parentloop.counter }} podproblem'>{{ body_podproblemu }}
 | |
|                                 {% endfor %}
 | |
|                             {# TODELETE #}
 | |
| 
 | |
|                         {% endfor %}
 | |
|                     <td class='border-r'>{{ rv.body_cislo }}
 | |
|                     <td class='border-r'><b>{{ rv.body_rocnik }}</b>
 | |
|                     <td class='border-r'>{{ rv.body_celkem_odjakziva }}
 | |
|                 </tr>
 | |
|             {% endfor %}
 | |
| </table>
 | |
| 
 | |
| {# TODELETE #}
 | |
| <script>
 | |
|     {% for p in problemy %}
 | |
|         $(".podproblem{{ forloop.counter }}").css("display", "none")
 | |
|         $("#problem{{ forloop.counter }}")[0].addEventListener('mouseover', podproblem{{ forloop.counter }})
 | |
|         $("#problem{{ forloop.counter }}")[0].addEventListener('mouseout', podproblem{{ forloop.counter }}end)
 | |
|         function podproblem{{ forloop.counter }}(event) {
 | |
|             $(".podproblem{{ forloop.counter }}").css("display", "")
 | |
|         }
 | |
|         function podproblem{{ forloop.counter }}end(event) {
 | |
|             $(".podproblem{{ forloop.counter }}").css("display", "none")
 | |
|         }
 | |
|     {% endfor %}
 | |
| </script>
 | |
| {# TODELETE #}
 |