Aleksi44 / wagtailsvg

Wagtail + SVG
https://pypi.org/project/wagtailsvg/
GNU General Public License v3.0
35 stars 24 forks source link

Not compatible with wagtail 6.0 #29

Open maxbellec opened 2 months ago

maxbellec commented 2 months ago

As stated in the 6.0 changelog,

The wagtail.contrib.modeladmin app has been removed. If you wish to continue using it, it is available as the external package wagtail-modeladmin.

wagtailsvg/wagtail_hooks.py does import from from wagtail.contrib.modeladmin, so that code doesn't work in Wagtail 6.0.

The quick fix is just to add a dependency to wagtail-modeladmin and change the import to from wagtail_modeladmin .... The better fix is to use snippets instead.