Reputation: 5936
I have a number of top level pages that need splitting into two different menus. Using Django and Django-CMS what would the best way to do this?
I have been reading through a number of Google threads and the most common suggestion is nesting the pages under sub headings with a custom id. The menu then could be extracted using the function show_menu_below_id. While this method works the URL is altered to match the page hierarchy, which I would like to avoid.. I know there are methods to fix this problem but they have their own issues such as FLAT_URLS (alters all urls and is being retired) and overwrite-url - but this is manual and not wanted.
Thanks for any help or suggestions..
Menu1
HOME
B
C
Menu2
D
E
F
Upvotes: 2
Views: 603
Reputation: 19
I would go the show_menu_below_id way in combination with overwrite the url. Not nice but a very edge case.
Upvotes: 1