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