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

24 lines
584 B
HTML
Raw Normal View History

2015-09-11 18:36:16 +02:00
{% extends "seminar/archiv/base_temata.html" %}
2015-09-09 22:52:06 +02:00
{% block content %}
2016-02-27 18:27:15 +01:00
<h1>
2015-09-10 12:11:28 +02:00
{% block nadpis1a %}{% block nadpis1b %}
Archiv témat
{% endblock %}{% endblock%}
2016-02-27 18:27:15 +01:00
</h1>
2015-09-09 22:52:06 +02:00
2015-09-10 11:04:56 +02:00
{% for tema in object_list %}
{% with tema.cislo_zadani.rocnik.rocnik as rocnik %}
{% ifchanged rocnik %}
{% if not forloop.first %}</ul>{% endif %}
2016-02-27 18:27:15 +01:00
<h2>{{ rocnik }}. ročník</h2>
2015-09-10 11:04:56 +02:00
<ul>
{% endifchanged %}
<li>
<a href="{{ tema.verejne_url }}">{{ tema.kod_v_rocniku }}: {{ tema.nazev }}</a>
{% endwith %}
2015-09-09 22:52:06 +02:00
{% endfor %}
2015-09-10 11:04:56 +02:00
</ul>
2015-09-09 22:52:06 +02:00
{% endblock content %}