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.
Thanks for the wonderful package!
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
GenericForeignKeyswhich it would be pretty great ifdjango-modelclustersupported.Thanks for the wonderful package!