[Answer]-Feincms, list of created pages with specific template

1👍

Can’t you just filter by template_key?

from feincms.modules.page.models import Page
Page.objects.filter(template_key='homepage')

In order to filter by level, use the django-mptt attributes:

Page.objects.filter(level=1)
👤Jonas

Leave a comment