有没有办法查看Wagtail管理员所做更改的历史记录?我可以看到五个最新的编辑,但历史完成,是否可能?
提前致谢
答案 0 :(得分:0)
使用:
from wagtail.wagtailcore.models import PageRevision
#get all revisions order by date
PageRevision.objects.all().order_by('-created_at')
#get revision specific page(ex:4)
PageRevision.objects.filter(page_id=4).order_by('-created-at')
它解决了我的问题,你也可以用Paginator对结果进行分页。