{% load wagtailcore_tags nav_tags %} {% with l2_pages=parent|sorted_children %} {# Sidebar L2 #}
{% for l2 in l2_pages %} {% with l3_pages=l2|sorted_children %}
{{ l2.title }} {% if l3_pages and depth != '1' %}{% endif %}
{% endwith %} {% endfor %}
{# Área L3: omitida se depth=1 #} {% if depth != '1' %}
{% for l2 in l2_pages %} {% with l3_pages=l2|sorted_children %} {% if l3_pages %}
{# Sidebar L3 #}
{% for l3 in l3_pages %} {% with l4_pages=l3|sorted_children %}
{{ l3.title }} {% if l4_pages and depth != '2' %}{% endif %}
{% endwith %} {% endfor %}
{# Área L4: omitida se depth=2 #} {% if depth != '2' %}
{% for l3 in l3_pages %} {% with l4_pages=l3|sorted_children %} {% if l4_pages %}
{% for l4 in l4_pages %} {{ l4.title }} {% endfor %}
{% endif %} {% endwith %} {% endfor %}
{% endif %}
{% endif %} {% endwith %} {% endfor %}
{% endif %} {% endwith %}