50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
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 %}
|
|
|
|
{% if user.is_staff and vysledkovka_s_neverejnymi %}
|
|
<div class='mam-org-only'>
|
|
<h3>Výsledková listina včetně neveřejných bodů</h3>
|
|
{% with vysledkovka_s_neverejnymi as vysledkovka %}
|
|
{% include "seminar/vysledkovka_rocnik.html" %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
|