131 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| <div>
 | |
|   <h2>
 | |
|     {% block nadpis1a %}{% block nadpis1b %}
 | |
|       Ročník {{ rocnik }}
 | |
|     {% endblock %}{% endblock %}
 | |
|   </h2>
 | |
| 
 | |
|   {% if rocnik.temata %}
 | |
|     <h2>Témata</h2>
 | |
|     <ul>
 | |
|     {% for tema in rocnik.temata.all %}
 | |
|       <li>{#<a href="{{ tema.verejne_url }}">#}{{ tema.nazev }}{#</a>#}
 | |
|     {% endfor %}
 | |
|     </ul>
 | |
|   {% endif %}
 | |
| 
 | |
| <h2>Čísla</h2>
 | |
| 
 | |
| <div class="cisla-v-rocniku">
 | |
|   {% for c in rocnik.verejna_cisla %}
 | |
|     <div class="cislo_pole">
 | |
| 
 | |
|       <h6> Číslo {{ c.kod }}</h6>
 | |
| 
 | |
|       <div class="flip-card" id="archiv-rocnik">
 | |
| 
 | |
|       <div class="flip-card-inner">
 | |
|         <div class="flip-card-front">
 | |
| 
 | |
|       <div class="flip-card-foto">
 | |
|         {% if c.titulka_nahled %}
 | |
|         <img src="{{ c.titulka_nahled.url }}" alt="{{ c.kod }}" height=180px>
 | |
|         {% else %}
 | |
|         {% load static %} <img src="{% static 'images/no-picture.png' %}" height=180px alt="no-picture">
 | |
|         {% endif %}
 | |
|       </div>
 | |
| 
 | |
|       </div>
 | |
|        <div class="flip-card-back">
 | |
| 
 | |
|          <div class="cislo_odkazy">
 | |
|            <ul>
 | |
|              <li>
 | |
|                <a href="{{ c.verejne_url }}">archiv čísla</a>
 | |
|              </li>
 | |
|              {% if c.pdf %}
 | |
|              <li>
 | |
|                  <a href='{{ c.pdf.url }}'>pdf</a>
 | |
|              </li>
 | |
|              {% endif %}
 | |
|            </ul>
 | |
|          </div>
 | |
| 
 | |
| 
 | |
|       </div>
 | |
|       </div>
 | |
|       </div>
 | |
|       </div>
 | |
| 
 | |
|   {% endfor %}
 | |
| </div>
 | |
| 
 | |
| {% if user.je_org and rocnik.neverejna_cisla %}
 | |
| <div class="mam-org-only">
 | |
|     <div class="cisla-v-rocniku">
 | |
|         {% for c in rocnik.neverejna_cisla %}
 | |
|             <div class="cislo_pole">
 | |
| 
 | |
|                 <h6> Číslo {{ c.kod }}</h6>
 | |
| 
 | |
|                 <div class="flip-card" id="archiv-rocnik">
 | |
| 
 | |
|                     <div class="flip-card-inner">
 | |
|                         <div class="flip-card-front">
 | |
| 
 | |
|                             <div class="flip-card-foto">
 | |
|                                 {% if c.titulka_nahled %}
 | |
|                                     <img src="{{ c.titulka_nahled.url }}" alt="{{ c.kod }}" height=180px>
 | |
|                                 {% else %}
 | |
|                                     {% load static %} <img src="{% static 'images/no-picture.png' %}" height=180px alt="no-picture">
 | |
|                                 {% endif %}
 | |
|                             </div>
 | |
| 
 | |
|                         </div>
 | |
|                         <div class="flip-card-back">
 | |
| 
 | |
|                             <div class="cislo_odkazy">
 | |
|                                 <ul>
 | |
|                                     <li>
 | |
|                                         <a href="{{ c.verejne_url }}">archiv čísla</a>
 | |
|                                     </li>
 | |
|                                     {% if c.pdf %}
 | |
|                                         <li>
 | |
|                                             <a href='{{ c.pdf.url }}'>pdf</a>
 | |
|                                         </li>
 | |
|                                     {% endif %}
 | |
|                                 </ul>
 | |
|                             </div>
 | |
| 
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
|         {% endfor %}
 | |
|     </div>
 | |
| </div>
 | |
| {% endif %}
 | |
| 
 | |
| 
 | |
|   {% if vysledkovka %}
 | |
|     <h2>Výsledková listina</h2>
 | |
|       {% include "vysledkovky/vysledkovka_rocnik.html" %}
 | |
|   {% endif %}
 | |
| 
 | |
|   {% if user.je_org %}
 | |
|     <div class='mam-org-only'>
 | |
|     <p><a href='vysledkovka.tex' download>Výsledkovka ročníku (LaTeX, včetně neveřejných)</a></p>
 | |
|     {# FIXME: Sice to sem asi nepatří sémanticky, ale bylo to nejjednodušší… #}
 | |
|     <p><a href='{% url 'seminar_rocnik_resitele_csv' rocnik=rocnik.rocnik %}' download>CSV export řešitelů</a></p>
 | |
|     <h2>Výsledková listina včetně neveřejných bodů</h2>
 | |
|         {% include "vysledkovky/vysledkovka_rocnik_neverejna.html" %}
 | |
|     </div>
 | |
|   {% endif %}
 | |
| 
 | |
| </div>
 | |
| {% endblock content %}
 | 
