I'm working on building a tag system similar to what stackoverflow uses. A tag consist of a name and a collection of model instances that are associated with that tag. I can't find any documentation on how to declare this type of many to many relationship. Typically its just ManyToMany(model-name) but I have many models I want in this collection. Does anyone have any pointers or resources that may be useful?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use ContentType to do this. There is even an example of doing tags with it in the documentation on that page. You probably will not be able to use a typical ManyToMany field, and instead, create a tagged model instead, that has a ForeignKey to your Tag model, and a GenericForeignKey. |
|||||
|
django-taggitordjango-taggingor just own code? – grosshat Nov 15 '12 at 20:09