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.
19 lines
439 B
19 lines
439 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Archiv témat
|
|
{% endblock %}{% endblock%}
|
|
</h1>
|
|
|
|
{% for rocnik, temata in rocniky.items %}
|
|
<h2>Ročník {{ rocnik }}</h2>
|
|
<ul>
|
|
{% for tema in temata %}
|
|
<li><a href="{{ tema.verejne_url }}"> {{ tema.kod_v_rocniku }}: {{ tema.nazev }} </a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
|
|
{% endblock content %}
|
|
|