Closed SerhiiKruhlikov closed 1 month ago
Hi @SerhiiKruhlikov,
We are aware of these warnings and we are treating them as false positives
We are following this issue on #464
There isn't a good fix for this yet (sorry). There are some workarounds on #464 that might be useful.
As for now, I'm closing this issue as it's a duplicate. Feel free to reopen #464 if you have any updates.
After updating to the latest version of
wagtailmenus
, I still receive warnings in the Django system check related to theMainMenu
model.The warnings are:
Steps to Reproduce:
wagtailmenus
.python manage.py check
.content_panels
andsettings_panels
in theMainMenu
model.Expected Behavior: No warnings should appear when using the
MainMenu
model with Wagtail menus. The model should usepanels
instead ofcontent_panels
andsettings_panels
for proper snippet editing.Environment:
Possible Solution: The
MainMenu
model should usepanels
instead ofcontent_panels
andsettings_panels
since it is a snippet and not a page model. Alternatively, theedit_handler
could be set up if a tabbed interface is desired.