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.
30 lines
758 B
30 lines
758 B
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Специализации</h1>
|
|
{% load mptt_tags %}
|
|
{# {% for spec in object_list %}#}
|
|
{# <h4>{{ spec }}</h4>#}
|
|
{# {% endfor %}#}
|
|
{##}
|
|
{# {% load mptt_tags %}#}
|
|
{#<ul>#}
|
|
{# {% recursetree object_list %}#}
|
|
{# <li>#}
|
|
{# {{ node.name }}#}
|
|
{# {% if not node.is_leaf_node %}#}
|
|
{# <ul class="children">#}
|
|
{# {{ children }}#}
|
|
{# </ul>#}
|
|
{# {% endif %}#}
|
|
{# </li>#}
|
|
{# {% endrecursetree %}#}
|
|
{#</ul>#}
|
|
{{ root }}
|
|
{% for ch in children %}
|
|
<h3>{{ ch }}</h3>
|
|
{% for ch1 in ch.get_children %}
|
|
{{ ch1 }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
|