Advanced topics >> Using custom menu classes and models
In the example given the following import is wrong:
from wagtail.wagtailadmin.edit_handlers import FieldPanel, PageChooserPanel
It should be:
from wagtail.admin.edit_handlers import FieldPanel, PageChooserPanel
Not a big deal but it could help someone who just copied and pasted the code.
Advanced topics >> Using custom menu classes and models
In the example given the following import is wrong:
from wagtail.wagtailadmin.edit_handlers import FieldPanel, PageChooserPanelIt should be:
from wagtail.admin.edit_handlers import FieldPanel, PageChooserPanelNot a big deal but it could help someone who just copied and pasted the code.