wagtail / django-modelcluster

Django extension to allow working with 'clusters' of models as a single unit, independently of the database
BSD 3-Clause "New" or "Revised" License
485 stars 66 forks source link

GenericForeignKey #165

Open hammygoonan opened 2 years ago

hammygoonan commented 2 years ago

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!