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