Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
392 B
22 lines
392 B
{% extends "seminar/archiv/base_cisla.html" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h2>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Archiv čísel
|
|
{% endblock %}{% endblock %}
|
|
</h2>
|
|
|
|
<ul>
|
|
{% for r in object_list %}
|
|
<li><a href='{{ r.verejne_url }}'>Ročník {{ r }}</a>
|
|
{% empty %}
|
|
Nejsou žádné ročníky
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
|