gpt4 book ai didi

wagtail - 通过parent_page_types限制首页只能作为root的直接子级使用

转载 作者:行者123 更新时间:2023-12-04 05:29:29 25 4
gpt4 key购买 nike

我在我的Page模型中愉快地使用了parent_page_typessubpage_types

但是我坚持只允许我的class HomePage(Page)作为根级别的直接子代。

有什么提示吗?

最佳答案

试试这个:

parent_page_types = ['wagtailcore.Page']

另外,为了完整起见,只允许一个主页实例,请将此类方法添加到 HomePage中:
@classmethod
def can_create_at(cls, parent):
# You can only create one of these!
return super(HomePage, cls).can_create_at(parent) \
and not cls.objects.exists()

关于wagtail - 通过parent_page_types限制首页只能作为root的直接子级使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37167863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com