In Wagtail applications I tend to make an Abstract Page model that adds a bunch of stuff I want on every page.
I'd quite like to be able to include tagging, but because you can't have a Many-to-many relationship to an Abstract model I have to add tags to each individual page type I create.
The solution is GenericForeignKeys which it would be pretty great if django-modelcluster supported.
In Wagtail applications I tend to make an Abstract Page model that adds a bunch of stuff I want on every page.
I'd quite like to be able to include tagging, but because you can't have a Many-to-many relationship to an Abstract model I have to add tags to each individual page type I create.
The solution is
GenericForeignKeys
which it would be pretty great ifdjango-modelcluster
supported.Thanks for the wonderful package!