0

ナビゲーション ノードの使用例を教えてください。

ドキュメントに例が見つかりません。

これはあります{{ node }}が、どこから来たのですか?

部分的に私はに興味があり{{ node.is_leaf_node }}ます。

4

1 に答える 1

3

各ナビゲーション ノードは、メニュー ツリーの単なるリンク/エントリであるため、ページ レイアウトから生成されます。次に例を示します。

- Home
  - About
  - Projects
    - Project A
    - Project B
  - Contact

各ページがメニュー ツリーのノードを表すメニューを作成します。

デフォルトのmenu.htmlテンプレートで動作する例があります(childはメニューのノードです):

{% load menu_tags %}
{% for child in children %}
<li class="{% if child.selected %}selected{% endif %}{% if child.ancestor %}ancestor{% endif %}{% if child.sibling %}sibling{% endif %}{% if child.descendant %}descendant{% endif %}">
    <a href="{{ child.attr.redirect_url|default:child.get_absolute_url }}">{{ child.get_menu_title }}</a>
    {% if child.children %}
    <ul>
        {% show_menu from_level to_level extra_inactive extra_active template "" "" child %}
    </ul>
    {% endif %}
</li>
{% endfor %}
于 2013-03-31T18:46:30.543 に答える