2011-11-23 76 views
0

我使用的是django-cms 2.2,我的菜單突然消失了。沒有錯誤信息。除了菜單,頁面通常呈現。我正在使用:django-cms菜單消失

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

命令,當我檢查它在show_menu_template裏面。 showmenu_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 %} 
+0

您是否取消發佈管理員中的任何內容?嘗試'{%show_menu 100 100 100 100 ...%}'查看菜單中是否有鏈接 –

回答

0

我已經改變了模板裏的標籤,並開始工作,我不知道爲什麼它不工作之前,並停止本身,而是什麼要做

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