[Django]-Is it possible to show Django-CMS menus in a non-CMS application?

3👍

There is a template tag for that: show_menu_below_id

👤Ski

1👍

To further quote:

Note

All views that are attached like this must return a RequestContext instance instead of the default Context instance.

I just had to add context_instance=RequestContext(request) to my render_to_responses.

👤Joe

Leave a comment