41 lines
		
	
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "seminar/archiv/base_cisla.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| <div>
 | |
|   <h2>
 | |
|     {% block nadpis1a %}{% block nadpis1b %}
 | |
|       Ročník {{ rocnik.roman }}
 | |
|     {% endblock %}{% endblock %}
 | |
|   </h2>
 | |
| 
 | |
|   <p>Ročník číslo {{ rocnik.rocnik }} ({{ rocnik.prvni_rok }}/{{ rocnik.druhy_rok }})
 | |
| 
 | |
|   <ul>
 | |
|   {% for c in rocnik.verejna_cisla %}
 | |
|   <li><a href="{{ c.verejne_url }}">Číslo {{ c.kod }}</a>
 | |
|       {% if c.pdf %}
 | |
|         (<a href='{{ c.pdf.url }}'>pdf</a>)
 | |
|       {% endif %}
 | |
|   {% endfor %}
 | |
|   </ul>
 | |
| 
 | |
|   {% if temata_v_rocniku %}
 | |
|     <h3>Témata</h3>
 | |
|     <ul>
 | |
|     {% for tema in temata_v_rocniku %}
 | |
|       <li>{# TODO zprovoznit odkaz až bude na co <a href="{{ tema.verejne_url }}"> #}{{ tema.kod_v_rocniku }}: {{ tema.nazev }}{# TODO </a> #}
 | |
|     {% endfor %}
 | |
|     </ul>
 | |
|   {% endif %}
 | |
| 
 | |
|   {% if vysledkovka %}
 | |
|     <h3>Výsledková listina</h3>
 | |
|     {% include "seminar/vysledkovka_rocnik.html" %}
 | |
|   {% endif %}
 | |
| 
 | |
| </div>
 | |
| {% endblock content %}
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | 
