django-cms菜单消失了

时间:2011-11-23 12:15:00

标签: django django-cms

我正在使用django-cms 2.2,我的菜单突然消失了。没有错误消息。页面呈现正常,但菜单除外。我正在使用:

{% show_menu 0 0 100 100 "menu/show_menu_template.html" %}

命令,当我检查它时,它进入show_menu_templateshowmenu_template是标准的,如下所述,它之前有效,欢呼

{% load menu_tags %}
{% for child in children %}

<li class="{% if forloop.last %}last {% endif %}{% if child.selected %}current 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 %}

1 个答案:

答案 0 :(得分:0)

我已经更改了模板中的标签并且它开始工作,我不确定为什么它之前没有工作并且停止了但是该怎么做

{% show_menu 1 1 100 100 "menu/show_menu_template.html" %}