24 lines
497 B
HTML
24 lines
497 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Řešitelské články
|
|
{% endblock %}{% endblock %}
|
|
</h1>
|
|
|
|
{% for clanek in object_list %}
|
|
{% with clanek.cislo.rocnik.rocnik as rocnik %}
|
|
{% ifchanged rocnik %}
|
|
{% if not forloop.first %}</ul>{% endif %}
|
|
<h2>{{ rocnik }}. ročník</h2>
|
|
<ul>
|
|
{% endifchanged %}
|
|
<li>
|
|
<a href="{{ clanek.verejne_url }}">{{ clanek.nazev }}</a>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|