This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CategoryPage(Page): | |
parent_page_types = ["CoreApp.HomePage"] <- Notice that it is child of Homepage. So breadcrumb in this page is Homepage>CategoryPage | |
template = "category.html" | |
description = RichTextField( | |
null=True, | |
blank=True, | |
features=["bold", "italic", "link"], | |
) |