Django admin ManyToMany inline "has no ForeignKey to" error
Solution 1:
Admin documentation has a section dedicated to inlining with many-to-many relationships. You should use Quote.tags.through
as a model for TagInline
, instead of Tag
itself.