Browse Source

Clanky | pokud je PDF s cislem, odkazat na nej.

export_seznamu_prednasek
parent
commit
98f2ad12a7
  1. 23
      seminar/templates/seminar/clanky/resitelske_clanky.html

23
seminar/templates/seminar/clanky/resitelske_clanky.html

@ -9,15 +9,20 @@
</h1> </h1>
{% for clanek in object_list %} {% for clanek in object_list %}
{% with clanek.cislo.rocnik.rocnik as rocnik %} {% with clanek.cislo.rocnik.rocnik as rocnik %}
{% ifchanged rocnik %} {% ifchanged rocnik %}
{% if not forloop.first %}</ul>{% endif %} {% if not forloop.first %}</ul>{% endif %}
<h2>{{ rocnik }}. ročník</h2> <h2>{{ rocnik }}. ročník</h2>
<ul> <ul>
{% endifchanged %} {% endifchanged %}
<li> <li>
<a href="{{ clanek.verejne_url }}">{{ clanek.nazev }}</a> {% if clanek.cislo.pdf %}
{% endwith %} <a href="{{ clanek.cislo.pdf.url }}">{{ clanek.nazev }}</a>
{% else %}
{{ clanek.nazev }} (vyšlo v čísle {{clanek.cislo}})
{% endif %}
</li>
{% endwith %}
{% endfor %} {% endfor %}
</ul> </ul>

Loading…
Cancel
Save