mamweb/seminar/templates/seminar/archiv/submenu.html
Matěj Kocián 6f68a3a90d Omezení archivu
* deaktivovány odkazy na konkrétní úlohy a témata
* v submenu jen čísla a výsledkovky
2015-09-12 18:35:34 +02:00

12 lines
572 B
HTML

{% with "/archiv" as cesta %}
<ul>
<li class="{% if selected == "cisla" %}selected{% endif %}"><a href="{{cesta}}/cisla/">Čísla</a>
{# TODO zprovoznit až budou témata v db <li class="{% if selected == "temata" %}selected{% endif %}"><a href="{{cesta}}/temata/">Témata</a> #}
{# TODO zprovoznit až budou úlohy v db <li class="{% if selected == "ulohy" %}selected{% endif %}"><a href="{{cesta}}/ulohy/">Úlohy</a> #}
<li class="{% if selected == "vysledky" %}selected{% endif %}"><a href="{{cesta}}/vysledky/">Výsledkové listiny</a>
</ul>
{% endwith %}