mamweb/seminar/templates/seminar/archiv/temata.html

23 lines
584 B
HTML

{% extends "seminar/archiv/base_temata.html" %}
{% block content %}
<h1>
{% block nadpis1a %}{% block nadpis1b %}
Archiv témat
{% endblock %}{% endblock%}
</h1>
{% for tema in object_list %}
{% with tema.cislo_zadani.rocnik.rocnik as rocnik %}
{% ifchanged rocnik %}
{% if not forloop.first %}</ul>{% endif %}
<h2>{{ rocnik }}. ročník</h2>
<ul>
{% endifchanged %}
<li>
<a href="{{ tema.verejne_url }}">{{ tema.kod_v_rocniku }}: {{ tema.nazev }}</a>
{% endwith %}
{% endfor %}
</ul>
{% endblock content %}