如何知道Django-CMS中当前页面的级别

How to known the level of current page in Django-CMS

我的 page.html 有这个

{% extends "base.html" %}
{% load cms_tags menu_tags %}

{% block title %}{% page_attribute "page_title" %}{% endblock title %}

{% block content %}
  {% placeholder "content" %}
  {% show_menu 2 0 0 100 %}
{% endblock content %}

但是根据当前页面的级别,我必须在页面上显示不同的元素,像这样

{% if node.menu_level == 2 %}
  {% show_menu 2 0 0 100 %}
{% else %}
  #do something different
{% endif %}

怎么做?如何知道当前页面的级别?

我对 select 基于页面祖先的相关页面标题做了类似的事情;

{% if request.current_page.get_ancestors|length <= 1 %}
    <h1 class="pipe-title pipe-title--inset">
        {{ request.current_page.get_page_title }}
    </h1>
{% else %}
    {% for ance in request.current_page.get_ancestors %}
        {% if ance.depth == 2 %}
            <h1 class="pipe-title pipe-title--inset">{{ ance.get_page_title }}</h1>
        {% endif %}
    {% endfor %}
{% endif %}

所以你可以根据菜单树中的页面深度做任何你想做的事情。