octavenz / wagtail-advanced-form-builder

Advanced form builder for Wagtail
BSD 3-Clause "New" or "Revised" License
19 stars 7 forks source link

Custom page model inheritance order can effect streamblock render #3

Open pjho opened 2 years ago

pjho commented 2 years ago

Using a custom page model https://wagtail-advanced-form-builder.readthedocs.io/en/latest/getting_started/using_your_own_page_models/

When using a BasePage instead of Page directly - to get the streamfield block working I needed to change:

class EmailFormBuilderPage(Page, AbstractAdvancedEmailForm):

to

class EmailFormBuilderPage(AbstractAdvancedEmailForm, Page):

Might be good to add a note to docs.