Guidelines for using Wagtail Pages or Django models?
问题 For example, I want to build an ecommerce website using wagtail, one component is order. I think order should not wagtail Page, but simple Django model, see code below. from django.db import models from wagtail.admin.edit_handlers import ( FieldPanel, StreamFieldPanel, MultiFieldPanel, InlinePanel, ) from wagtail.core.fields import RichTextField from wagtail.core.models import Page # Since product details are shown to users, so need to have a Page for it. class XyzProductPage(Page): template