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)
Source:stackexchange.com