An extension for Django CMS that allows you to create multiple menus like Wordpress
- Install with pip
pip install django-cms-named-menus
- Add
cms_named_menus
to INSTALLED_APPS
After installation, place the {% show_named_menu 'MenuName' %}
template tag where you want your menu to appear.
{% load named_cms_menu_tags %} <ul> {% show_named_menu "Main Menu" %} </ul>
Next, create your menu in the admin area using the drag and drop interface.