I do understand how the routing of Wagtail works when a HTTP request arrives.
site
matching viahostname
andport
- find the specific
page
viaslug
settings on Wagtail CMS GUIserve()
of that specific page will be called
However, above routing mechanism does not touch the class
in models.py
yet. If I have below settings in models.py
of django which is integrated with Wagtail,
class BlogList(RoutablePageMixin, Page):
template = "Post_List.html"
intro = RichTextField(blank=True)
content_panels = Page.content_panels + [
FieldPanel("intro")
]
subpage_types = [
"BlogDetail",
]
parent_page_type = [
"HomePage",
]
How do I know this class BlogList
is linked to which page
on Wagtail CMS GUI ?