Wagtail: Display a list of child pages inside a parent page
问题 In Wagtail CMS, I'm trying to create an index page that will display a list of all its child pages along with a featured image associated with each child page. I have created these two page models in models.py: class IndexPage(Page): intro = RichTextField(blank=True) content_panels = Page.content_panels + [ FieldPanel('intro', classname='full'), ] subpage_types = ['myapp.ItemPage'] class ItemPage(Page): representative_image = models.ForeignKey( 'wagtailimages.Image', null=True, blank=True, on