Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
{% extends "seminar/archiv/base_cisla.html" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Ročník {{ rocnik.roman }}
|
|
{% endblock %}{% endblock %}
|
|
</h1>
|
|
|
|
<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 %}
|
|
<h2>Témata</h2>
|
|
<ul>
|
|
{% for tema in temata_v_rocniku %}
|
|
<li>{% if tema.text_zadani %}<a href="{{ tema.verejne_url }}">{% endif %}{{ tema.kod_v_rocniku }}: {{ tema.nazev }}{% if tema.text_zadani %}</a>{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if vysledkovka %}
|
|
{% if user.is_staff %}
|
|
<div class='mam-org-only'>
|
|
<a href='vysledkovka.tex'>Výsledkovka ročníku (LaTeX)</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h2>Výsledková listina</h2>
|
|
{% include "seminar/vysledkovka_rocnik.html" %}
|
|
{% endif %}
|
|
|
|
{% if user.is_staff and vysledkovka_s_neverejnymi %}
|
|
<div class='mam-org-only'>
|
|
<h2>Výsledková listina včetně neveřejných bodů</h2>
|
|
{% with vysledkovka_s_neverejnymi as vysledkovka %}
|
|
{% include "seminar/vysledkovka_rocnik.html" %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
|
|
|