{% load treenodes %} {# {{depth}} #}
{% if obj.node|isRocnik %} Ročník {{obj.node.rocnik}} {% elif obj.node|isCislo %} Číslo {{obj.node.cislo}} {% elif obj.node|isTemaVCisle %} Téma {{obj.node.tema.nazev}} {% elif obj.node|isUlohaZadani %} Úloha {{obj.node.uloha.kod_v_rocniku}} ({{obj.node.uloha.max_body}} b) {% elif obj.node|isUlohaVzorak %} Řešení: {{obj.node.uloha.kod_v_rocniku}} {% elif obj.node|isText %} {{obj.node.text.na_web}} {% else %} Objekt jiného typu {{obj.node}} {% endif %} {%if obj.children %}
{%for ch in obj.children %} {%with obj=ch depth=depth|add:"1" template_name="seminar/treenode_recursive.html" %} {%include template_name%} {%endwith%} {%endfor%}
{%endif%}