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.
129 lines
3.9 KiB
129 lines
3.9 KiB
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>
|
|
{% block nadpis1a %}
|
|
Ročník {{ rocnik }}
|
|
{% 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 otaceci_cisla">
|
|
{% for c in rocnik.verejna_cisla %}
|
|
<div class="flip_card_container">
|
|
|
|
<h6> Číslo {{ c.kod }}</h6>
|
|
|
|
<div class="flip-card">
|
|
|
|
<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 otaceci_cisla">
|
|
{% for c in rocnik.neverejna_cisla %}
|
|
<div class="flip_card_container">
|
|
|
|
<h6> Číslo {{ c.kod }}</h6>
|
|
|
|
<div class="flip-card">
|
|
|
|
<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.radky_vysledkovky %}
|
|
<h2 id=vysledky>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>
|
|
<p><a href="tituly.tex" download>Tituly (TeX, včetně neveřejných, všechny, nevhodné do mamtexu)</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.html" with vysledkovka=vysledkovka_neverejna %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock content %}
|
|
|