Wa在日期上线

问题描述 投票:0回答:1

我正在尝试创建一个查询集,以返回计划在将来发布的页面。我尝试使用Page模型的go_live_at属性,但是出现以下错误:NameError: name 'go_live_at' is not defined。为什么没有定义它,还有更好的方法吗?谢谢。

python django wagtail
1个回答
0
投票

from wagtail.core.models import Page

future_pages = Page.objects.exclude(live=True)

Reference

© www.soinside.com 2019 - 2024. All rights reserved.