I am using Django CMS 2.1.0.beta3 and am encountering a problem. I need to have access to all the pages in a variable so that I can loop through them and create my navigation menu using a for loop. The show_menu functionality provided with django cms will not work for what I am doing.
I need a queryset with all pages so I can do something similar to the following:
{% for page in cms_pages %}
{{ page.title }}
{% endfor %}
Does anyone know how I can gain access to all the published page objects like that on ALL pages?