19 lines
439 B
HTML
19 lines
439 B
HTML
{% 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 %}
|